source: dev/BasicCompiler_Common/TypeDef.h@ 46

Last change on this file since 46 was 46, checked in by dai_9181, 17 years ago

VarPtrの戻り値の型をVoidPtrではなく、ポインタレベルを増加した型にした。
関連関数のパラメータにconstを適用。

File size: 403 bytes
Line 
1
2class CTypeDef{
3public:
4 char *lpszName;
5 char *lpszBaseName;
6 CTypeDef(const 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(const char *name,char *base);
20 int check(const char *name);
21};
22extern CDBTypeDef *pobj_DBTypeDef;
23
24
25void AddTypeDefData(char *Command);
Note: See TracBrowser for help on using the repository browser.