mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-11 11:39:02 -04:00
Oh yeah, main thing is ModeHandler and ModeWatcher classes now take an InspIRCd* to their constructor git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4858 e03df62e-2008-0410-955e-edbf42e46eb7
11 lines
246 B
C++
11 lines
246 B
C++
#include "mode.h"
|
|
|
|
class InspIRCd;
|
|
|
|
class ModeUserOperator : public ModeHandler
|
|
{
|
|
public:
|
|
ModeUserOperator(InspIRCd* Instance);
|
|
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding);
|
|
};
|