求助:怎样添加我编好的类呢
我编好了一个public继承CEDIT的类,以下是头文件的内容:class CComEdit : public CEdit
{
public:
void ShowText(int IDC_EDIT);
};
接着是C文件:
#include "CCOMEDIT.h"
void CComEdit::ShowText(int IDC_EDIT)
{
SetDlgItemText(IDC_EDIT,"我的类");
}(只是想试验一下怎样添加一个类,写简单了点)
然后用“add files to project”将这两个文件加入myclass工程中,在myclassdlg.cpp中添加#include "CCOMEDIT.h",再调用ShowText(int IDC_EDIT),可是编译了老出错:unexpected end of file while looking for precompiled header directive
Error executing cl.exe.
不知道错在哪了,请高手帮帮忙