mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
15 lines
310 B
C++
15 lines
310 B
C++
#pragma once
|
|
#include "Expression/ISimpleExpression.h"
|
|
#include "Parsing/IParserLineStream.h"
|
|
|
|
class SimpleExpressionInterpreter
|
|
{
|
|
public:
|
|
explicit SimpleExpressionInterpreter(IParserLineStream* input);
|
|
|
|
std::unique_ptr<ISimpleExpression> Evaluate() const;
|
|
|
|
private:
|
|
IParserLineStream* m_input;
|
|
};
|