静态切分窗口问题(error C2653: “CCSDI_2View”: 不是类或命名空间名称)

运行:

BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs,CCreateContext *pContext)
{
 CRect cr;
 GetClientRect(&cr);
 CSize paneSize(cr.Width()/3,cr.Height()/3);
 m_splitter.CreateStatic(this,3,1);
 m_splitter.CreateView(0,0,RUNTIME_CLASS(CCSDI_2View),paneSize,pContext);
 m_splitter.CreateView(1,0,RUNTIME_CLASS(CCSDI_2View),paneSize,pContext);
 m_splitter.CreateView(2,0,RUNTIME_CLASS(CCSDI_2View),paneSize,pContext);
 return true;
 //return CFrameWnd::OnCreateClient(lpcs, pContext);

}

 

问题:

1>------ 已启动生成: 项目: CSDI_2, 配置: Debug Win32 ------
1>正在编译...
1>MainFrm.cpp
1>d:\项目\csdi_2\csdi_2\mainfrm.cpp(86) : error C2653: “CCSDI_2View”: 不是类或命名空间名称
1>d:\项目\csdi_2\csdi_2\mainfrm.cpp(87) : error C2653: “CCSDI_2View”: 不是类或命名空间名称
1>d:\项目\csdi_2\csdi_2\mainfrm.cpp(88) : error C2653: “CCSDI_2View”: 不是类或命名空间名称
1>正在生成代码...
1>正在编译...
1>CSDI_2.cpp
1>正在生成代码...
1>生成日志保存在“file://d:\项目\CSDI_2\CSDI_2\Debug\BuildLog.htm”
1>CSDI_2 - 3 个错误,0 个警告
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========

 

 

不少人出现这样的问题吧,对于这个问题我们只要把CSDI_2View.cpp中所有的头文件复制到MainFrm.h中

你可能感兴趣的:(c,File,Class)