#include <winstl/winstl.h>
#include <winstl/filesystem/filesystem_traits.hpp>
#include <winstl/filesystem/file_path_buffer.hpp>
#include <winstl/memory/processheap_allocator.hpp>
#include <winstl/error/exceptions.hpp>
#include <stlsoft/memory/allocator_features.hpp>
#include <stlsoft/memory/auto_buffer.hpp>
#include <stlsoft/string/copy_functions.hpp>
#include <stlsoft/shims/access/string.hpp>
#include <stlsoft/util/std_swap.hpp>
#include <stdexcept>
Go to the source code of this file.
Namespaces | |
| namespace | winstl |
Classes | |
| class | basic_path |
| Class used for composing and decomposing file-system paths. More... | |
| struct | basic_path::part_type |
Typedefs | |
| typedef basic_path< char, filesystem_traits< char > > | path_a |
Specialisation of the basic_path template for the ANSI character type char. | |
| typedef basic_path< wchar_t, filesystem_traits< wchar_t > > | path_w |
Specialisation of the basic_path template for the Unicode character type wchar_t. | |
| typedef basic_path< TCHAR, filesystem_traits< TCHAR > > | path |
Specialisation of the basic_path template for the Win32 character type TCHAR. | |
Functions | |
| template<typename C, typename T, typename A> | |
| bool | operator== (basic_path< C, T, A > const &lhs, typename basic_path< C, T, A >::char_type const *rhs) |
| template<typename C, typename T, typename A> | |
| bool | operator!= (basic_path< C, T, A > const &lhs, typename basic_path< C, T, A >::char_type const *rhs) |
| template<typename C, typename T, typename A> | |
| bool | operator== (typename basic_path< C, T, A >::char_type const *lhs, basic_path< C, T, A > const &rhs) |
| template<typename C, typename T, typename A> | |
| bool | operator!= (typename basic_path< C, T, A >::char_type const *lhs, basic_path< C, T, A > const &rhs) |
| template<typename C, typename T, typename A> | |
| bool | operator== (basic_path< C, T, A > const &lhs, basic_path< C, T, A > const &rhs) |
| template<typename C, typename T, typename A> | |
| bool | operator!= (basic_path< C, T, A > const &lhs, basic_path< C, T, A > const &rhs) |
| template<typename C, typename T, typename A> | |
| basic_path< C, T, A > | operator/ (basic_path< C, T, A > const &lhs, typename basic_path< C, T, A >::char_type const *rhs) |
Concatenates rhs to the path lhs. | |
| template<typename C, typename T, typename A> | |
| basic_path< C, T, A > | operator/ (typename basic_path< C, T, A >::char_type const *lhs, basic_path< C, T, A > const &rhs) |
Concatenates rhs to the path lhs. | |
| template<typename C, typename T, typename A> | |
| basic_path< C, T, A > | operator/ (basic_path< C, T, A > const &lhs, basic_path< C, T, A > const &rhs) |
Concatenates rhs to the path lhs. | |
| template<typename C, typename T, typename A> | |
| void | swap (basic_path< C, T, A > &lhs, basic_path< C, T, A > &rhs) |
| template<typename C, typename T, typename A> | |
| C const * | c_str_data (winstl_ns_qual(basic_path)< C, T, A > const &b) |
| c_str_data String Access Shim for winstl::basic_path | |
| template<typename C, typename T, typename A> | |
| size_t | c_str_len (winstl_ns_qual(basic_path)< C, T, A > const &b) |
| c_str_len String Access Shim for winstl::basic_path | |
| template<typename C, typename T, typename A> | |
| C const * | c_str_ptr (winstl_ns_qual(basic_path)< C, T, A > const &b) |
| c_str_ptr String Access Shim for winstl::basic_path | |
| template<typename C, typename T, typename A> | |
| C const * | c_str_ptr_null (winstl_ns_qual(basic_path)< C, T, A > const &b) |
| c_str_ptr_null String Access Shim for winstl::basic_path | |
| template<typename S, typename C, typename T, typename A> | |
| S & | operator<< (S &s, winstl_ns_qual(basic_path)< C, T, A > const &b) |
| stream insertion shim for winstl::basic_path | |
1.5.6