var.h 134 B

123456789101112131415
  1. #ifndef VAR_H
  2. #define VAR_H
  3. struct Type;
  4. struct Var{
  5. int index;
  6. Type *type;
  7. Var( int i,Type *t ):index(i),type(t){}
  8. };
  9. #endif