global.h

Go to the documentation of this file.
00001 #ifndef GLOBAL_H
00002 #define GLOBAL_H
00003 
00004 class GlobalService : public Service
00005 {
00006  public:
00007         GlobalService(Module *m) : Service(m, "GlobalService", "Global") { }
00008 
00014         virtual void SendGlobal(const BotInfo *sender, const Anope::string &source, const Anope::string &message) = 0;
00015 };
00016 
00017 #endif // GLOBAL_H
00018