Files
scully/inc/AST/BinOp.h
2013-06-01 17:00:39 +02:00

18 lines
175 B
C++

#ifndef BINOP_H
#define BINOP_H
#include <string>
enum class BinOp {
EQUALS,
LESS,
PLUS,
MINUS,
TIMES,
DIV
};
std::string binOpToString(BinOp op);
#endif // BINOP_H