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_PHPOUT_DB_H 00007 #define WOC_PHPOUT_DB_H 00008 00009 #include "phpout.h" 00010 00012 class WocPHPTable:public QObject 00013 { 00014 Q_OBJECT 00015 public: 00017 WocPHPTable(WocPHPOut*); 00019 virtual void finalize(); 00021 virtual void newTable(const WocTable&); 00022 private: 00023 WocPHPOut*m_parent; 00024 signals: 00025 void errorFound(); 00026 }; 00027 00028 #endif