Fixed AwayNick timer and added BackNick timer

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@553 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2005-10-09 21:47:57 +00:00
parent e80a9f2a81
commit b5a3cd3727
5 changed files with 67 additions and 17 deletions
+7
View File
@@ -20,6 +20,8 @@ class CChan;
class CServer;
class CIRCSock;
class CUserSock;
class CBackNickTimer;
class CAwayNickTimer;
class CKeepNickTimer;
class CJoinTimer;
@@ -85,6 +87,9 @@ public:
bool ResumeFile(const CString& sRemoteNick, unsigned short uPort, unsigned long uFileSize);
CString GetCurNick();
bool Clone(const CUser& User, CString& sErrorRet);
void StartAwayNickTimer();
void DelAwayNickTimer();
void DelBackNickTimer();
// Setters
void SetUserName(const CString& s);
@@ -186,6 +191,8 @@ protected:
bool m_bKeepBuffer;
bool m_bAutoCycle;
CBackNickTimer* m_pBackNickTimer;
CAwayNickTimer* m_pAwayNickTimer;
CKeepNickTimer* m_pKeepNickTimer;
CJoinTimer* m_pJoinTimer;