mirror of
https://github.com/anope/anope.git
synced 2026-06-29 11:36:38 +02:00
16 lines
267 B
C++
16 lines
267 B
C++
#ifndef OPERSERV_H
|
|
#define OPERSERV_H
|
|
|
|
class OperServService : public Service
|
|
{
|
|
public:
|
|
OperServService(Module *m) : Service(m, "OperServ") { }
|
|
|
|
virtual BotInfo *Bot() = 0;
|
|
};
|
|
|
|
static service_reference<OperServService> operserv("OperServ");
|
|
|
|
#endif // OPERSERV_H
|
|
|