Files
BlitzNext/compiler/decl.old
T

17 lines
216 B
Plaintext
Raw Normal View History

2014-01-31 08:23:00 +13:00
#ifndef DECL_H
#define DECL_H
#include "type.h"
const int OFFSET_GLOBAL=0x80000000;
struct Decl{
int offset;
Type *type;
Decl( int n,Type *t ):offset(n),type(t){}
virtual Decl *Decl(){ return 0; }
};
#endif