nickserv.h

Go to the documentation of this file.
00001 #ifndef NICKSERV_H
00002 #define NICKSERV_H
00003 
00004 class NickServService : public Service
00005 {
00006  public:
00007         NickServService(Module *m) : Service(m, "NickServService", "NickServ") { }
00008 
00009         virtual void Validate(User *u) = 0;
00010         virtual void Login(User *u, NickAlias *na) = 0;
00011 };
00012 
00013 #endif // NICKSERV_H
00014