mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-09-08 01:26:04 -05:00
Refactor
* Minor style changes * Move function definitions * Split utility.hpp * Enable include of export-symbol-helper.hpp in tests
This commit is contained in:
committed by
WarmUpTill
parent
dcba7c535d
commit
01cf000cbe
@@ -9,8 +9,9 @@ namespace advss {
|
||||
|
||||
std::variant<double, std::string>
|
||||
EvalMathExpression(const std::string &expression);
|
||||
bool IsValidNumber(const std::string &);
|
||||
EXPORT std::optional<double> GetDouble(const std::string &);
|
||||
EXPORT std::optional<int> GetInt(const std::string &);
|
||||
bool IsValidNumber(const std::string &str);
|
||||
EXPORT std::optional<double> GetDouble(const std::string &str);
|
||||
EXPORT std::optional<int> GetInt(const std::string &str);
|
||||
EXPORT bool DoubleEquals(double left, double right, double epsilon);
|
||||
|
||||
} // namespace advss
|
||||
|
||||
Reference in New Issue
Block a user