mirror of
https://github.com/anope/anope.git
synced 2026-06-24 10:56:39 +02:00
c8699c6726
This was done with:
find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2020 Anope Team/i' {} \;
25 lines
452 B
C++
25 lines
452 B
C++
/*
|
|
*
|
|
* (C) 2011-2020 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
#ifndef NICKSERV_H
|
|
#define NICKSERV_H
|
|
|
|
class NickServService : public Service
|
|
{
|
|
public:
|
|
NickServService(Module *m) : Service(m, "NickServService", "NickServ")
|
|
{
|
|
}
|
|
|
|
virtual void Validate(User *u) = 0;
|
|
virtual void Collide(User *u, NickAlias *na) = 0;
|
|
virtual void Release(NickAlias *na) = 0;
|
|
};
|
|
|
|
#endif // NICKSERV_H
|