mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-13 00:08:26 -05:00
Add equals operation to simpleexpressionvalue to check if an expression is the same as another one
This commit is contained in:
@ -14,6 +14,7 @@ public:
|
||||
ISimpleExpression& operator=(const ISimpleExpression& other) = default;
|
||||
ISimpleExpression& operator=(ISimpleExpression&& other) noexcept = default;
|
||||
|
||||
_NODISCARD virtual bool Equals(const ISimpleExpression* other) const = 0;
|
||||
_NODISCARD virtual bool IsStatic() const = 0;
|
||||
_NODISCARD virtual SimpleExpressionValue Evaluate() const = 0;
|
||||
};
|
||||
|
Reference in New Issue
Block a user