blob: 7148eb11b37ae981ed7a0eaae804a6929ec1f930 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
//
// C++ Implementation: clientstream_test
//
// Description:
//
//
// Author: Kopete Developers <kopete-devel@kde.org>, (C) 2004
// Licensed under the GNU General Public License
#ifndef clientstream_test_h
#define clientstream_test_h
#include <tqglobal.h>
#include <tqapplication.h>
#include <tqtimer.h>
#include "oscarclientstream.h"
#include "oscarconnector.h"
#include "coreprotocol.h"
#define TQT_FATAL_ASSERT 1
class ClientStreamTest : public TQApplication
{
Q_OBJECT
public:
ClientStreamTest(int argc, char ** argv);
~ClientStreamTest();
bool isConnected();
public slots:
void slotDoTest();
void slotConnected();
//void slotWarning(int warning);
//void slotsend(int layer);
private:
KNetworkConnector *myConnector;
ClientStream *myTestObject;
bool connected;
};
#endif
|