mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-21 01:27:24 -05:00
10 lines
251 B
C++
10 lines
251 B
C++
#pragma once
|
|
#include <string>
|
|
#include <variant>
|
|
#include <optional>
|
|
|
|
std::variant<double, std::string>
|
|
EvalMathExpression(const std::string &expression);
|
|
bool IsValidNumber(const std::string &);
|
|
std::optional<double> GetDouble(const std::string &);
|