|
路径编辑器那节:
void CRambleSystemView::OnInitialUpdate()
{
CView::OnInitialUpdate();
if (iFileNum==1)
{
iFileNum++;
CString csFileName= GetDocument()->GetFileName();
mOSG->InitOSG(csFileName.Getstring());
mThreadHandle=(HANDLE)_beginthread(&CCoreOSG::Render,0,mOSG);
}
else
{
iFileNum++;
CString csFileName=GetDocument()->GetFileName();
// mOSG->ReplaceSceneData(csFileName.GetString()); //CString 不能转换为string类型
}
}
CCoreOSG.h 中 定义了 void InitOSG(std::string modelname);
但是 CString 类型不能直接转换。编译始终不通过。 如果处理这个问题? |
|