Initial revision

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2004-08-24 00:08:51 +00:00
parent 71a0088bea
commit 538d3ece4e
41 changed files with 10362 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef _SERVER_H
#define _SERVER_H
#include <string.h>
class CServer {
public:
CServer(const string& sName, unsigned short uPort = 6667, const string& sPass = "", bool bSSL = false);
virtual ~CServer();
const string& GetName() const;
unsigned short GetPort() const;
const string& GetPass() const;
bool IsSSL() const;
private:
protected:
string m_sName;
unsigned short m_uPort;
string m_sPass;
bool m_bSSL;
};
#endif // !_SERVER_H