1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 21:26:38 +02:00
Files
anope/include/modules/chanserv/service.h
T
2025-03-08 12:22:07 +00:00

24 lines
441 B
C++

/*
*
* (C) 2011-2025 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;
};