mercenary/testapp/testapp.h
Correl Roush 0381859219 Imported the QT4 IRC Client project, along with the mIRC script parser
that will eventually be integrated into it


git-svn-id: file:///srv/svn/ircclient/trunk@1 a9804ffe-773b-11dd-bd7c-89c3ef1d2733
2008-08-31 09:08:24 +00:00

21 lines
368 B
C++

#include <iostream>
#include <QCoreApplication>
#include "../src/ircclient.h"
class TestApp : public QCoreApplication {
Q_OBJECT
public:
TestApp( int argc, char *argv[] );
private:
IRCClient *irc;
private slots:
void connected();
void disconnected();
void registered();
void sent( QString text );
void rcvd( QString text );
void debug( QString text );
};