本文整理汇总了C++中CStringList::getText方法的典型用法代码示例。如果您正苦于以下问题:C++ CStringList::getText方法的具体用法?C++ CStringList::getText怎么用?C++ CStringList::getText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CStringList
的用法示例。
在下文中一共展示了CStringList::getText方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: updateGlobalMapView
void hmt_slam_guiFrame::updateGlobalMapView()
{
m_glGlobalHMTMap->m_openGLScene->clear();
wxBusyCursor busy;
// Dump text representation to log window:
{
CStringList strLst;
m_hmtslam->m_map.dumpAsText( strLst );
string str;
strLst.getText( str );
cout << str << endl;
}
if (m_hmtslam->m_map.getFirstNode())
{
CHMHMapNode::TNodeID refID = m_hmtslam->m_map.getFirstNode()->getID();
THypothesisID hypID = (THypothesisID )atoi( cbHypos->GetStringSelection().mb_str() );
if ( m_hmtslam->m_LMHs.find(hypID)==m_hmtslam->m_LMHs.end() )
{
wxMessageBox(_U( format("No LMH has hypothesis ID %i!", (int)hypID).c_str() ), _("Error with topological hypotesis"));
return;
}
// cout << "Showing hypothesis ID: " << hypID << endl;
m_hmtslam->m_map.getAs3DScene(
*m_glGlobalHMTMap->m_openGLScene,
refID,
hypID );
m_glGlobalHMTMap->Refresh();
}
}