/* mini * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2004-2006, Toni Thomsson */ #ifndef test_listener_h #define test_listener_h #include #include class MINI_EXPORT CTestListener : public CzzMessageListener { public: CTestListener(); virtual ~CTestListener(); void onMessage( CzzMessage* msg ); int size(); protected: private: }; #endif // test_listener_h