/* * This is a sample application that utilizes libZI and libQT to illustrate the basic API. * For further information, please seek the appropriate URL(s): * - http://libzi.sourceforge.net * - http://www.troll.no * * Matt T. Proud */ #include #include class Sample:public QWidget { Q_OBJECT public: Sample (void); void WriteConfig (); void ReadConfig (); private: QPushButton * a; public slots: void Push (); };