13 lines
156 B
C++
13 lines
156 B
C++
#pragma once
|
|
|
|
namespace antlrSysY {
|
|
|
|
enum class Type {
|
|
IntegerType,
|
|
FunctionType,
|
|
ArrayType,
|
|
PointerType,
|
|
VectorType,
|
|
};
|
|
|
|
} // namespace antlrSysY
|