/* CIRCDDB - ircDDB client library in C++ Copyright (C) 2010 Michael Dirska, DL1BFF (dl1bff@mdx.de) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #if !defined(_IRCPROTOCOL_H) #define _IRCPROTOCOL_H #include #include "IRCMessageQueue.h" #include "IRCApplication.h" class IRCProtocol { public: IRCProtocol ( IRCApplication * app, const wxString& callsign, const wxString& password, const wxString& channel, const wxString& versionInfo ); ~IRCProtocol(); void setNetworkReady( bool state ); bool processQueues ( IRCMessageQueue * recvQ, IRCMessageQueue * sendQ ); private: void chooseNewNick(); wxArrayString nicks; wxString password; wxString channel; wxString name; wxString currentNick; wxString versionInfo; int state; int timer; int pingTimer; wxString debugChannel; IRCApplication * app; }; #endif