mirror of
https://github.com/anope/anope.git
synced 2026-06-27 05:26:38 +02:00
7d1047490e
This replaces a mixture of no include guards, ANOPE_FOO_H, and FOO_H.
23 lines
441 B
C++
23 lines
441 B
C++
/*
|
|
*
|
|
* (C) 2011-2021 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
class ChanServService : public Service
|
|
{
|
|
public:
|
|
ChanServService(Module *m) : Service(m, "ChanServService", "ChanServ")
|
|
{
|
|
}
|
|
|
|
/* Have ChanServ hold the channel, that is, join and set +nsti and wait
|
|
* for a few minutes so no one can join or rejoin.
|
|
*/
|
|
virtual void Hold(Channel *c) = 0;
|
|
};
|