71 StringWrapper<T> & operator=(
const char *s){
76 StringWrapper<T> & operator=(
char c){
77 std::string::operator=(c);
82 template <
typename T2>
88 template <
typename T2>
96 void set(
const std::string & s=
""){
97 std::string::assign(s);
101 void set(
const StringWrapper & e){
102 std::string::assign(e);
106 void set(
const char *s){
107 std::string::assign(s);
125 bool operator==(
const T & x){
Utility class with static conversions.
Definition Converter.h:53
String-like object easily supporting conversion from other types, like Enum values.
Definition StringWrapper.h:50
StringWrapper(const T &x)
All the other constructors, including default constructor.
Definition StringWrapper.h:61
StringWrapper< T > & operator=(const StringWrapper< T2 > &s)
Copy string of another StringWrapper.
Definition StringWrapper.h:83
void set(const T &x)
Set the value from an other, user-defined dictionary.
Definition StringWrapper.h:120
Definition DataSelector.cpp:1277