Searched defs:is_pathable (Results 1 – 1 of 1) sorted by relevance
57 struct is_pathable { static const bool value = false; }; argument59 template<> struct is_pathable<char*> { static const bool value = true; }; struct60 template<> struct is_pathable<const char*> { static const bool value = true; }; argument61 template<> struct is_pathable<wchar_t*> { static const bool value = true; }; argument62 template<> struct is_pathable<const wchar_t*> { static const bool value = true; }; argument63 template<> struct is_pathable<std::string> { static const bool value = true; }; struct64 template<> struct is_pathable<std::wstring> { static const bool value = true; }; argument65 template<> struct is_pathable<std::vector<char> > { static const bool value = true; }; argument66 template<> struct is_pathable<std::vector<wchar_t> > { static const bool value = true; }; argument67 template<> struct is_pathable<std::list<char> > { static const bool value = true; }; argument[all …]