Files
BlitzNext/compiler/ex.h
T
blitz-research 08a613ed0e Initial commit.
2014-01-31 08:23:00 +13:00

13 lines
234 B
C

#ifndef EX_H
#define EX_H
struct Ex{
string ex; //what happened
int pos; //source offset
string file;
Ex( const string &ex ):ex(ex),pos(-1){}
Ex( const string &ex,int pos,const string &t ):ex(ex),pos(pos),file(t){}
};
#endif