mirror of
https://github.com/anope/anope.git
synced 2026-06-25 16:26:37 +02:00
19 lines
360 B
C++
19 lines
360 B
C++
#ifndef CHANSERV_H
|
|
#define CHANSERV_H
|
|
|
|
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;
|
|
};
|
|
|
|
#endif // CHANSERV_H
|
|
|