|
| static constexpr PropDef | Integer (std::string_view name, int64_t default_val, int64_t min_val, int64_t max_val, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | Floating (std::string_view name, double default_val, double min_val, double max_val, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | Boolean (std::string_view name, bool default_val, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | Text (std::string_view name, std::string_view default_val, std::string_view desc="", std::string_view regex="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | Enum (std::string_view name, std::string_view default_val, std::string_view v1, std::string_view v2, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | Enum (std::string_view name, std::string_view default_val, std::string_view v1, std::string_view v2, std::string_view v3, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | Enum (std::string_view name, std::string_view default_val, std::string_view v1, std::string_view v2, std::string_view v3, std::string_view v4, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | DynamicInt (std::string_view name, int64_t default_val, int64_t min_val, int64_t max_val, std::string_view desc="") |
| |
| static constexpr PropDef | DynamicFloat (std::string_view name, double default_val, double min_val, double max_val, std::string_view desc="") |
| |
| static constexpr PropDef | DynamicBool (std::string_view name, bool default_val, std::string_view desc="") |
| |
| static constexpr PropDef | DynamicString (std::string_view name, std::string_view default_val, std::string_view desc="", std::string_view regex="") |
| |
| static constexpr PropDef | DynamicEnum (std::string_view name, std::string_view default_val, std::string_view v1, std::string_view v2, std::string_view desc="") |
| |
| static constexpr PropDef | DynamicEnum (std::string_view name, std::string_view default_val, std::string_view v1, std::string_view v2, std::string_view v3, std::string_view desc="") |
| |
| static constexpr PropDef | RequiredInt (std::string_view name, int64_t min_val, int64_t max_val, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | RequiredFloat (std::string_view name, double min_val, double max_val, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | RequiredString (std::string_view name, std::string_view desc="", std::string_view regex="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | RequiredEnum (std::string_view name, std::string_view v1, std::string_view v2, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | RequiredEnum (std::string_view name, std::string_view v1, std::string_view v2, std::string_view v3, std::string_view desc="", Mutability mut=Mutability::Static) |
| |
| static constexpr PropDef | RequiredEnum (std::string_view name, std::string_view v1, std::string_view v2, std::string_view v3, std::string_view v4, std::string_view desc="", Mutability mut=Mutability::Static) |
| |