本文整理汇总了C++中ModeHandler::RemoveMode方法的典型用法代码示例。如果您正苦于以下问题:C++ ModeHandler::RemoveMode方法的具体用法?C++ ModeHandler::RemoveMode怎么用?C++ ModeHandler::RemoveMode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModeHandler
的用法示例。
在下文中一共展示了ModeHandler::RemoveMode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: RemoveStatus
void CommandFJoin::RemoveStatus(Channel* c)
{
Modes::ChangeList changelist;
const ModeParser::ModeHandlerMap& mhs = ServerInstance->Modes.GetModes(MODETYPE_CHANNEL);
for (ModeParser::ModeHandlerMap::const_iterator i = mhs.begin(); i != mhs.end(); ++i)
{
ModeHandler* mh = i->second;
// Add the removal of this mode to the changelist. This handles all kinds of modes, including prefix modes.
mh->RemoveMode(c, changelist);
}
ServerInstance->Modes.Process(ServerInstance->FakeClient, c, NULL, changelist, ModeParser::MODE_LOCALONLY);
}
示例2: RemoveStatus
void CommandFJoin::RemoveStatus(Channel* c)
{
irc::modestacker stack(false);
for (char modeletter = 'A'; modeletter <= 'z'; ++modeletter)
{
ModeHandler* mh = ServerInstance->Modes->FindMode(modeletter, MODETYPE_CHANNEL);
/* Passing a pointer to a modestacker here causes the mode to be put onto the mode stack,
* rather than applied immediately. Module unloads require this to be done immediately,
* for this function we require tidyness instead. Fixes bug #493
*/
if (mh)
mh->RemoveMode(c, &stack);
}
ApplyModeStack(ServerInstance->FakeClient, c, stack);
}