Home | History | Annotate | Download | only in libutil++

Lines Matching refs:string

16 #include <string>
35 /// build a spec from a string, valid argument are "all"
36 /// or a string convertible to T through istringtream(str) >> data
38 void set(std::string const &);
78 void generic_spec<T>::set(std::string const & str)
90 /// We don't use generic_spec<string>, since it's probably an error to try
91 /// to use generic_spec<string> we specialize but don't define it to get a
92 /// link error (using generic_spec<string> is problematic because g.set("all")
95 void generic_spec<std::string>::set(std::string const & str);