本文整理汇总了C++中TypeList::begin方法的典型用法代码示例。如果您正苦于以下问题:C++ TypeList::begin方法的具体用法?C++ TypeList::begin怎么用?C++ TypeList::begin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TypeList
的用法示例。
在下文中一共展示了TypeList::begin方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
FbTextElement::TypeList::const_iterator FbTextElement::subtype(const TypeList &list, const QString &style)
{
for (TypeList::const_iterator item = list.begin(); item != list.end(); item++) {
if (item->name() == style) return item;
}
return list.end();
}
示例2: while
FbTextElement::Sublist::Sublist(const TypeList &list, const QString &name)
: m_list(list)
, m_pos(list.begin())
{
TypeList::const_iterator empty = list.end();
while (m_pos != list.end()) {
if (m_pos->name() == name) break;
if (m_pos->name().isEmpty()) empty = m_pos;
m_pos++;
}
if (m_pos == list.end()) m_pos = empty;
}
示例3: typeLabel
QString Address::typeLabel() const
{
QString label;
bool first = true;
const TypeList list = typeList();
TypeList::ConstIterator it;
for ( it = list.begin(); it != list.end(); ++it ) {
if ( ( type() & (*it) ) && ( (*it) != Pref ) ) {
label.append( ( first ? "" : "/" ) + typeLabel( *it ) );
if ( first )
first = false;
}
}
return label;
}