15 lines
296 B
C++
15 lines
296 B
C++
#pragma once
|
|
#ifndef PYTHON_INTERPRETER_EVALVISITOR_H
|
|
#define PYTHON_INTERPRETER_EVALVISITOR_H
|
|
|
|
|
|
#include "Python3ParserBaseVisitor.h"
|
|
|
|
|
|
class EvalVisitor : public Python3ParserBaseVisitor {
|
|
// TODO: override all methods of Python3ParserBaseVisitor
|
|
};
|
|
|
|
|
|
#endif//PYTHON_INTERPRETER_EVALVISITOR_H
|