asd
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#ifndef IRCMANAGER_H
|
||||
#define IRCMANAGER_H
|
||||
|
||||
#define TWITCH_MAX_MESSAGELENGTH 500
|
||||
|
||||
#include "IrcMessage"
|
||||
#include "QMutex"
|
||||
|
||||
class IrcManager
|
||||
{
|
||||
public:
|
||||
static void connect();
|
||||
static void disconnect();
|
||||
|
||||
private:
|
||||
IrcManager();
|
||||
|
||||
static void beginConnecting();
|
||||
|
||||
static IrcConnection* connection;
|
||||
static QMutex* connectionMutex;
|
||||
static long connectionIteration;
|
||||
|
||||
static void messageReceived(IrcMessage* message);
|
||||
static void privateMessageReceived(IrcPrivateMessage* message);
|
||||
};
|
||||
|
||||
#endif // IRCMANAGER_H
|
||||
Reference in New Issue
Block a user