// // C++ Implementation: clientstream_test // // Description: // // // Author: Kopete Developers , (C) 2004 // Licensed under the GNU General Public License #ifndef ssitest_h #define ssitest_h #include #include #include #include "ssimanager.h" #define TQT_FATAL_ASSERT 1 class SSITest : public TQApplication { Q_OBJECT public: SSITest(int argc, char ** argv); ~SSITest(); void testIt(); private: SSIManager *m_manager; }; #endif