我的问题是:
Error 1 error C2248: 'CObject::CObject' : cannot access private member declared in class 'CObject' c:\program files\microsoft visual studio 10.0\vc\atlmfc\include\afxwin.h 1991 1 ProcessInfo
我的代码:
boost::thread timerThread(&CMainFunctions::TimerFunction, this, pid, TIMER_INTERVAL_MS, lstBox);
lstBox
是 MFC ListBox.,我的 TimerFunction 是:
void CMainFunctions::TimerFunction(int pid, int interval, CListBox &lstbox)
我需要做什么来编辑我的 MFC 表单,或者在我的表单中编辑我的 ListBox 线程?