EnumParseHelper
EnumParseHelper struct
Helper class that provides functionality of converting a string representation of enum consnant into equivalent enum value.
template<class E,class G,class Guard>class EnumParseHelper
Template parameters
Parameter | Description |
---|
E | The type of the enum with which the class’ methods operate |
G | Second formal argument of System::Enum to use. |
Guard | Formal template argument to select parsing algorithm available. |
Methods
Method | Description |
---|
static E Parse(const String&, bool) | Converts the specfied string into equivalent enum constant value. |
See Also