Initial commit.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
|
||||
#ifndef VAR_H
|
||||
#define VAR_H
|
||||
|
||||
struct Type;
|
||||
|
||||
struct Var{
|
||||
|
||||
int index;
|
||||
Type *type;
|
||||
|
||||
Var( int i,Type *t ):index(i),type(t){}
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user