#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