Searched defs:is_pathable (Results 1 – 1 of 1) sorted by relevance
57 struct is_pathable { static const bool value = false; }; struct59 template<> struct is_pathable<char*> { static const bool value = true; }; struct60 template<> struct is_pathable<const char*> { static const bool value = true; }; struct61 template<> struct is_pathable<wchar_t*> { static const bool value = true; }; struct62 template<> struct is_pathable<const wchar_t*> { static const bool value = true; }; struct63 template<> struct is_pathable<std::string> { static const bool value = true; }; argument64 template<> struct is_pathable<std::wstring> { static const bool value = true; }; argument65 template<> struct is_pathable<std::vector<char> > { static const bool value = true; }; struct66 template<> struct is_pathable<std::vector<wchar_t> > { static const bool value = true; }; struct67 template<> struct is_pathable<std::list<char> > { static const bool value = true; }; argument[all …]