00001 // Copyright (C) 2009-2011 by Konrad Rosenbaum <konrad@silmor.de> 00002 // protected under the GNU GPL version 3 or at your option any newer. 00003 // See COPYING.GPL file that comes with this distribution. 00004 // 00005 00006 #ifndef WOC_QTOUT_DB_H 00007 #define WOC_QTOUT_DB_H 00008 00009 #include "processor.h" 00010 00011 #include "mfile.h" 00012 00013 class QDomElement; 00014 class WocQtOut; 00015 00018 class WocQtTable 00019 { 00020 public: 00022 explicit WocQtTable(WocQtOut*); 00023 ~WocQtTable(); 00025 virtual void finalize(); 00027 virtual void newTable(const WocTable&); 00028 private: 00029 WocQtOut*m_parent; 00030 }; 00031 00032 #endif