|
땅주인 님이 쓰신 글 :
: AsynPro를 C++ Builder 2009에 설치하고 프로젝트 만들어서 Compile했더니... 아래에서 컴파일 에러가 나네요..
: AdPort.hpp파일의 일부분인데... .그냥 주석처리하면 ... 넘어가기는 하는데.. 좀 찜찜합니다.
: 이런 에러 해결하신분 .... 도움을....
:
: 미리 감사.....
:
: AdPort.hpp의 일부분입니다. //heaven2로 된 부분에 다음과 같은 에러입니다.
:
: [BCC32 Error] AdPort.hpp(420): E2109 Not an allowed type
: [BCC32 Error] AdPort.hpp(425): E2109 Not an allowed type
:
: < pre name=code class=cpp >
:
: class DELPHICLASS TApdComPort;
: class PASCALIMPLEMENTATION TApdComPort : public TApdCustomComPort
: {
: typedef TApdCustomComPort inherited;
:
: __published:
: ........
: __property TraceSize = {default=10000};
: __property TraceName; // heaven2 -------------------------
: ........
: __property LogSize = {default=10000};
: __property LogName; // heaven2 ---------------------------
: .......
: </pre>
// 로 막아 버리세요~
< pre name=code class=cpp >
class DELPHICLASS TApdComPort;
class PASCALIMPLEMENTATION TApdComPort : public TApdCustomComPort
{
typedef TApdCustomComPort inherited;
__published:
........
__property TraceSize = {default=10000};
// __property TraceName; // heaven2 -------------------------
........
__property LogSize = {default=10000};
// __property LogName; // heaven2 ---------------------------
.......
</pre>
|