mirror of https://github.com/JAJames/Jupiter.git
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.
32 lines
354 B
32 lines
354 B
#if !defined _IRC_SERVER_H_HEADER
|
|
#define _IRC_SERVER_H_HEADER
|
|
|
|
#include "Thinker.h"
|
|
#include "TCPSocket.h"
|
|
#include "INIFile.h"
|
|
#include "IRC.h"
|
|
|
|
namespace Jupiter
|
|
{
|
|
|
|
namespace IRC
|
|
{
|
|
|
|
class Server : public Thinker
|
|
{
|
|
struct Data;
|
|
Data *data_;
|
|
class Client
|
|
{
|
|
};
|
|
class Channel
|
|
{
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // _IRC_SERVER_H_HEADER
|