14 lines
No EOL
204 B
C++
14 lines
No EOL
204 B
C++
#ifndef CONSTANTS_H
|
|
#define CONSTANTS_H
|
|
|
|
#define STATEMENT 200
|
|
#define CALLFUNC 201
|
|
#define VECTOR 202
|
|
|
|
class Node;
|
|
|
|
// Share the line number between files
|
|
extern int linenum;
|
|
extern Node* result;
|
|
|
|
#endif |