class CTypeDef{ public: char *lpszName; char *lpszBaseName; CTypeDef(const char *name,char *base); ~CTypeDef(); }; class CDBTypeDef{ public: CTypeDef **ppobj_TypeDef; int iNum; CDBTypeDef(); ~CDBTypeDef(); void init(); void add(const char *name,char *base); int check(const char *name); }; extern CDBTypeDef *pobj_DBTypeDef; void AddTypeDefData(char *Command);