1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-08 01:47:11 +02:00

More unnecessary properties removed from the IRC session type.

This commit is contained in:
Sandu Liviu Catalin
2016-05-24 22:00:44 +03:00
parent 86a4933525
commit 0d7243c305
2 changed files with 1 additions and 191 deletions

View File

@ -1053,176 +1053,6 @@ protected:
* ...
*/
static void OnDccSendReq(irc_session_t * session, CCStr nick, CCStr addr, CCStr filename, Ulong size, irc_dcc_t dccid);
public:
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnConnect()
{
return m_OnConnect;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnNick()
{
return m_OnNick;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnQuit()
{
return m_OnQuit;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnJoin()
{
return m_OnJoin;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnPart()
{
return m_OnPart;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnMode()
{
return m_OnMode;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnUmode()
{
return m_OnUmode;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnTopic()
{
return m_OnTopic;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnKick()
{
return m_OnKick;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnChannel()
{
return m_OnChannel;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnPrivMsg()
{
return m_OnPrivMsg;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnNotice()
{
return m_OnNotice;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnChannelNotice()
{
return m_OnChannelNotice;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnInvite()
{
return m_OnInvite;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnCtcpReq()
{
return m_OnCtcpReq;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnCtcpRep()
{
return m_OnCtcpRep;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnCtcpAction()
{
return m_OnCtcpAction;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnUnknown()
{
return m_OnUnknown;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnNumeric()
{
return m_OnNumeric;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnDccChatReq()
{
return m_OnDccChatReq;
}
/* --------------------------------------------------------------------------------------------
* ...
*/
Function & GetOnDccSendReq()
{
return m_OnDccSendReq;
}
};
} // Namespace:: SqMod