PACK WOC  $VERSION$
qtdb.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_QTOUT_DB_H
7 #define WOC_QTOUT_DB_H
8 
9 #include "processor.h"
10 
11 #include "mfile.h"
12 
13 class QDomElement;
14 class WocQtOut;
15 
19 {
20  public:
22  explicit WocQtTable(WocQtOut*);
23  ~WocQtTable();
25  virtual void finalize();
27  virtual void newTable(const WocTable&);
28  private:
30 };
31 
32 #endif
Abstract base class for Qt client and server output.
Definition: qtout.h:44
stores the internal representation of a database table and its abstraction class
Definition: proctable.h:19
virtual void finalize()
called when all is done
Definition: qtdb.cpp:13
WocQtTable(WocQtOut *)
generates the table output as a helper to a specific output
Definition: qtdb.cpp:11
generates code for DB table wrappers in Qt so far this class is non-functional
Definition: qtdb.h:18
~WocQtTable()
Definition: qtdb.cpp:12
virtual void newTable(const WocTable &)
called for every table to generate
Definition: qtdb.cpp:14
WocQtOut * m_parent
Definition: qtdb.h:29