PACK WOC  $VERSION$
phpdb.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_DB_H
7 #define WOC_PHPOUT_DB_H
8 
9 #include "phpout.h"
10 
12 class WocPHPTable:public QObject
13 {
14  Q_OBJECT
15  public:
19  virtual void finalize();
21  virtual void newTable(const WocTable&);
22  private:
24  signals:
25  void errorFound();
26 };
27 
28 #endif
WocPHPTable(WocPHPOut *)
initializes the output object
Definition: phpdb.cpp:16
stores the internal representation of a database table and its abstraction class
Definition: proctable.h:19
Abstract base class for generating output for PHP.
Definition: phpout.h:23
virtual void finalize()
writes any last words after parsing finished
Definition: phpdb.cpp:38
void errorFound()
virtual void newTable(const WocTable &)
creates a class
Definition: phpdb.cpp:48
generates output for a PHP server side
Definition: phpdb.h:12
WocPHPOut * m_parent
Definition: phpdb.h:23