procedure ValidCtrCheck(TNotiPort Temp);
begin
TNotiPort.Create(nil);
end;
땅주인 님이 쓰신 글 :
: 델파이 문법을 책을 보면서 포팅을 하는 지라.. 더듬더음 하고 있는데요..
: 아래의 C++ code를 Delphi로 어떻게 고쳐야 할 지 모르겠습니다.
:
:
: //---------------------------------------------------------------------------
: // ValidCtrCheck is used to assure that the components created do not have
: // any pure virtual functions.
: static inline void ValidCtrCheck(TNotiPort *)
: {
: new TNotiPort(NULL);
: }
:
:
: 감사합니다.
|