summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/liboscar/tests/ssitest.h
blob: fbdcf2fb6252382903f0a8339f27cc870f3b0cb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// C++ Implementation: clientstream_test
//
// Description: 
//
//
// Author: Kopete Developers <kopete-devel@kde.org>, (C) 2004
// Licensed under the GNU General Public License

#ifndef ssitest_h
#define ssitest_h

#include <tqglobal.h>
#include <tqapplication.h>
#include <tqtimer.h>

#include "ssimanager.h"

#define QT_FATAL_ASSERT 1

class SSITest : public QApplication
{
Q_OBJECT
public:
	SSITest(int argc, char ** argv);
	
	~SSITest();
	
	void testIt();
private:
	SSIManager *m_manager;
};

#endif