blob: fe653430998bae7e82389167188786d4117b0c32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
* (C) 2014 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
*/
namespace Event
{
struct CoreExport BotCreate : Events
{
/** Called when a new bot is made
* @param bi The bot
*/
virtual void OnBotCreate(ServiceBot *bi) anope_abstract;
};
struct CoreExport BotChange : Events
{
/** Called when a bot is changed
* @param bi The bot
*/
virtual void OnBotChange(ServiceBot *bi) anope_abstract;
};
struct CoreExport BotDelete : Events
{
/** Called when a bot is deleted
* @param bi The bot
*/
virtual void OnBotDelete(ServiceBot *bi) anope_abstract;
};
}
template<> struct EventName<Event::BotCreate> { static constexpr const char *const name = "OnBotCreate"; };
template<> struct EventName<Event::BotChange> { static constexpr const char *const name = "OnBotChange"; };
template<> struct EventName<Event::BotDelete> { static constexpr const char *const name = "OnBotDelete"; };
|