델파이 문법을 책을 보면서 포팅을 하는 지라.. 더듬더음 하고 있는데요..
아래의 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);
}
감사합니다.
|