Start of a little irc app, doesn't really work right now and not in the build.
[newos.git] / apps / irc / ircreader.h
blobe0e79dd3d4cf8d0c315c9671032b5904a8626b48
1 #ifndef _IRCREADER_H
2 #define _IRCREADER_H
4 class IRCReader {
5 public:
6 IRCReader(int socket);
7 virtual ~IRCReader();
9 private:
10 int mSocket;
13 #endif