1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 17:16:38 +02:00
Files
anope/modules/pseudoclients/nickserv.h
T
Adam e66063e630 Rewrote the example configurations and split them
up into seperate files for each pseudo client.

Also reorganized how the modules are stored, and
made most of the old "extra" modules "core"
2011-08-05 05:35:31 -04:00

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