source: dev/BasicCompiler_Common/TypeDef.h@ 4

Last change on this file since 4 was 4, checked in by dai_9181, 17 years ago
File size: 385 bytes
Line 
1
2class CTypeDef{
3public:
4 char *lpszName;
5 char *lpszBaseName;
6 CTypeDef(char *name,char *base);
7 ~CTypeDef();
8};
9
10class CDBTypeDef{
11public:
12 CTypeDef **ppobj_TypeDef;
13 int iNum;
14 CDBTypeDef();
15 ~CDBTypeDef();
16
17 void init();
18
19 void add(char *name,char *base);
20 int check(char *name);
21};
22extern CDBTypeDef *pobj_DBTypeDef;
23
24
25void AddTypeDefData(char *Command);
Note: See TracBrowser for help on using the repository browser.