7c57bce6f01d3d7f28f6b1a148c29e8e529d908e
[repair.git] / Repair / RepairCompiler / MCC / Runtime / size.h
1 class typeobject {
2  public:
3   typeobject();
4   int getfield(int type, int fieldindex); //returns type
5   int isArray(int type, int fieldindex); //returns if array
6   int numElements(int type, int fieldindex);  //returns number of elements
7   int size(int type);
8   int getnumfields(int type);
9   bool issubtype(int subtype, int type);
10   void reset();
11 };