LeviLamina
Loading...
Searching...
No Matches
UIEval.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class UiExpression;
8namespace Json { class Value; }
9// clang-format on
10
11class UIEval {
12public:
13 // static functions
14 // NOLINTBEGIN
15 MCAPI static ::UiExpression const evalExpression(
16 ::std::string const& expressionString,
17 ::std::vector<::Json::Value*> const& variablesStack,
18 ::Json::Value const& localStack
19 );
20
21 MCAPI static ::Json::Value const& evalVariable(
22 ::std::string const& valueStr,
23 ::std::vector<::Json::Value*> const& variablesStack,
24 ::Json::Value const& localStack
25 );
26 // NOLINTEND
27};
Definition Value.h:16
Definition UIEval.h:5
Definition UiExpression.h:5