本文整理汇总了C++中Members::begin方法的典型用法代码示例。如果您正苦于以下问题:C++ Members::begin方法的具体用法?C++ Members::begin怎么用?C++ Members::begin使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Members
的用法示例。
在下文中一共展示了Members::begin方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: remove
void RadioButtonGroup::remove(HTMLInputElement* button) {
DCHECK_EQ(button->type(), InputTypeNames::radio);
auto it = m_members.find(button);
if (it == m_members.end())
return;
bool wasValid = isValid();
DCHECK_EQ(it->value, button->isRequired());
updateRequiredButton(*it, false);
m_members.remove(it);
if (m_checkedButton == button)
m_checkedButton = nullptr;
if (m_members.isEmpty()) {
DCHECK(!m_requiredCount);
DCHECK(!m_checkedButton);
} else if (wasValid != isValid()) {
setNeedsValidityCheckForAllButtons();
}
if (!wasValid) {
// A radio button not in a group is always valid. We need to make it
// valid only if the group was invalid.
button->setNeedsValidityCheck();
}
// Send notification to update AX attributes for AXObjects which radiobutton
// group has.
if (!m_members.isEmpty()) {
HTMLInputElement* input = m_members.begin()->key;
if (AXObjectCache* cache = input->document().existingAXObjectCache())
cache->radiobuttonRemovedFromGroup(input);
}
}
示例2: main
int main() {
#if 0
SipProtocol protocol;
protocol.buildRequestHeader("[email protected]", //user
"192.168.80.111", //from
"192.168.80.125", //to
"192.168.80.125", //via
"1" , //cseq
"qega444afa4g6aga4g"//call-id
);
waitForCall(&protocol);
protocol.dumpProperties();
#endif
DisableCompare<CppString> discom;
Members val;
val.insert(pair<CppString, int>("key1", 1));
val.insert(pair<CppString, int>("key2", 2));
Members::iterator iter;
for(iter = val.begin(); iter != val.end(); iter++) {
cout << iter->first << endl;
}
}