mirror of
https://github.com/anope/anope.git
synced 2026-06-27 17:06:39 +02:00
f858164dee
This allows naming commands and having spaces within command names.
16 lines
275 B
C++
16 lines
275 B
C++
#ifndef NICKSERV_H
|
|
#define NICKSERV_H
|
|
|
|
class NickServService : public Service
|
|
{
|
|
public:
|
|
NickServService(Module *m) : Service(m, "NickServ") { }
|
|
|
|
virtual void Validate(User *u) = 0;
|
|
};
|
|
|
|
static service_reference<NickServService> nickserv("NickServ");
|
|
|
|
#endif // NICKSERV_H
|
|
|