本文整理汇总了C++中DataType::GetNick方法的典型用法代码示例。如果您正苦于以下问题:C++ DataType::GetNick方法的具体用法?C++ DataType::GetNick怎么用?C++ DataType::GetNick使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataType
的用法示例。
在下文中一共展示了DataType::GetNick方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: CompareOneCrit
int BattleroomListCtrl::CompareOneCrit(DataType u1, DataType u2, int col, int dir) const
{
if ( col == m_status_column_index ) return dir * CompareStatus( u1, u2, m_battle );
if ( col == m_ingame_column_index ) return dir * CompareLobbyStatus( u1, u2 );
if ( col == m_faction_column_index ) return dir * CompareSide( u1, u2 );
if ( col == m_colour_column_index ) return dir * CompareColor( u1, u2 );
if ( col == m_country_column_index ) return dir * compareSimple( u1, u2 );
if ( col == m_rank_column_index ) return dir * CompareRank( u1, u2 );
if ( col == m_nick_column_index ) return dir * u1->GetNick().CmpNoCase( u2->GetNick() );
if ( col == m_team_column_index ) return dir * CompareTeam( u1, u2 );
if ( col == m_ally_column_index ) return dir * CompareAlly( u1, u2 );
if ( col == m_resourcebonus_column_index ) return dir * CompareHandicap( u1, u2 );
return 0;
}
示例2: CompareOneCrit
int NickListCtrl::CompareOneCrit(DataType u1, DataType u2, int col, int dir) const
{
if (!(u1 && u2))
return 0;
switch (col) {
case 0:
return dir * CompareUserStatus(u1, u2);
case 1:
return dir * TowxString(u2->GetCountry()).CmpNoCase(TowxString(u1->GetCountry()));
case 2:
return dir * compareSimple(TowxString(u2->GetStatus().rank), TowxString(u1->GetStatus().rank));
case 3:
return dir * TowxString(u2->GetNick()).CmpNoCase(TowxString(u1->GetNick()));
default:
return 0;
}
}