|
헉 #endif 있는데..
//---------------------------------------------------------------------------
#ifndef C_StorageH
#define C_StorageH
#ifndef STORE_TYPE
#define STORE_TYPE
#define TYPE_STRING 1
#define TYPE_IMAGE 2
class CmdVar
{
public :
int vtype;
String Value;
String Name;
void *Data;
};
class CB_Storage
{
private :
protected :
TList *Variable;
C_WinManage *WinMng;
public :
__fastcall CB_Storage();
__fastcall ~CB_Storage();
void __fastcall SetWindowManager(C_WinMAnage* Mng);
};
//---------------------------------------------------------------------------
class CU_Storage : public CB_Storage
{
public :
};
//---------------------------------------------------------------------------
#endif
이렇게면 틀리나요?
임프님 감사합니당~ ^^
박지훈.임프 님이 쓰신 글 :
: 수야 님이 쓰신 글 :
: : E2187 Unexpected of file in conditional started on line 3
: :
: : 하미 미치게쏘여 ㅠ_ㅠ
: :
: : 쩜 도와주세여~
: :
:
:
: 임펠리테리입니다.
:
: 소스 파일이 잘못되었군요.
: Unexpected end of file in conditional started on... 에러는 #if... 등의 컴파일러 디렉티브가 시작되었는데 #endif가 없을 경우에 발생합니다. 소스를 올려보세요.
:
: 그럼 참고하시길...
|