mirror of
https://github.com/correl/mercenary.git
synced 2024-11-23 11:09:50 +00:00
22 lines
368 B
C
22 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 );
|
||
|
};
|