You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
927 B
55 lines
927 B
//
|
|
// C++ Implementation: clientstream_test
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Kopete Developers <kopete-devel@kde.org>, (C) 2004
|
|
// Licensed under the GNU General Public License
|
|
|
|
#ifndef logintest_h
|
|
#define logintest_h
|
|
|
|
#include <tqglobal.h>
|
|
#include <tqapplication.h>
|
|
#include <tqtimer.h>
|
|
|
|
#include "oscarclientstream.h"
|
|
#include "oscarconnector.h"
|
|
#include "client.h"
|
|
#include "connection.h"
|
|
#include "coreprotocol.h"
|
|
|
|
#define QT_FATAL_ASSERT 1
|
|
|
|
class LoginTest : public QApplication
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
LoginTest(int argc, char ** argv);
|
|
|
|
~LoginTest();
|
|
|
|
bool isConnected() { return connected; }
|
|
|
|
public slots:
|
|
void slotDoTest();
|
|
void runAddGroupTest();
|
|
void runDelGroupTest();
|
|
void slotConnected();
|
|
|
|
//void slotWarning(int warning);
|
|
|
|
//void slotsend(int layer);
|
|
|
|
private:
|
|
KNetworkConnector *myConnector;
|
|
ClientStream *myTestObject;
|
|
Client* myClient;
|
|
Connection* myConnection;
|
|
|
|
bool connected;
|
|
};
|
|
|
|
#endif
|