PACK WOC  $VERSION$
phpstrans.h
Go to the documentation of this file.
1 // Copyright (C) 2009-2011 by Konrad Rosenbaum <konrad@silmor.de>
2 // protected under the GNU GPL version 3 or at your option any newer.
3 // See COPYING.GPL file that comes with this distribution.
4 //
5 
6 #ifndef WOC_PHPOUT_STRANS_H
7 #define WOC_PHPOUT_STRANS_H
8 
9 #include "phptrans.h"
10 
11 
14 {
15  public:
18  private:
20  virtual QString trnHandlers(const WocTransaction&);
22  QString trnInput(const WocTransaction&);
24  QString trnOutput(const WocTransaction&);
26  QString trnExecute(const WocTransaction&);
27 };
28 
29 #endif
QString trnInput(const WocTransaction &)
helper: create transaction input parser
Definition: phpstrans.cpp:91
QString trnOutput(const WocTransaction &)
helper: create transaction output serializer
Definition: phpstrans.cpp:142
Abstract base class for generating output for PHP.
Definition: phpout.h:23
generates output for a PHP server side
Definition: phpstrans.h:13
WocPHPServerTransaction(WocPHPOut *)
initializes the output object
Definition: phpstrans.cpp:14
generates output for a PHP server side
Definition: phptrans.h:13
internal representation of a transaction
Definition: proctrans.h:16
QString trnExecute(const WocTransaction &)
helper: create direct execution code for web interface
Definition: phpstrans.cpp:185
virtual QString trnHandlers(const WocTransaction &)
helper: create handlers
Definition: phpstrans.cpp:19