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

Lines Matching refs:generic_spec

2  * @file generic_spec.h
27 class generic_spec
33 generic_spec();
49 throw std::out_of_range("generic_spec holds no value");
58 bool match(generic_spec<T> const & rhs) const {
69 generic_spec<T>::generic_spec()
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);