Jeff Thompson | 86b6d64 | 2013-10-17 15:01:56 -0700 | [diff] [blame] | 1 | // ndnboost/filesystem/convenience.hpp ----------------------------------------// |
| 2 | |
| 3 | // Copyright Beman Dawes, 2002-2005 |
| 4 | // Copyright Vladimir Prus, 2002 |
| 5 | // Use, modification, and distribution is subject to the Boost Software |
| 6 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| 7 | // http://www.boost.org/LICENSE_1_0.txt) |
| 8 | |
| 9 | // See library home page at http://www.boost.org/libs/filesystem |
| 10 | |
| 11 | //----------------------------------------------------------------------------// |
| 12 | |
| 13 | #ifndef NDNBOOST_FILESYSTEM3_CONVENIENCE_HPP |
| 14 | #define NDNBOOST_FILESYSTEM3_CONVENIENCE_HPP |
| 15 | |
| 16 | #include <ndnboost/config.hpp> |
| 17 | |
| 18 | # if defined( NDNBOOST_NO_STD_WSTRING ) |
| 19 | # error Configuration not supported: Boost.Filesystem V3 and later requires std::wstring support |
| 20 | # endif |
| 21 | |
| 22 | #include <ndnboost/filesystem/operations.hpp> |
| 23 | #include <ndnboost/system/error_code.hpp> |
| 24 | |
| 25 | #include <ndnboost/config/abi_prefix.hpp> // must be the last #include |
| 26 | |
| 27 | namespace ndnboost |
| 28 | { |
| 29 | namespace filesystem |
| 30 | { |
| 31 | |
| 32 | # ifndef NDNBOOST_FILESYSTEM_NO_DEPRECATED |
| 33 | |
| 34 | inline std::string extension(const path & p) |
| 35 | { |
| 36 | return p.extension().string(); |
| 37 | } |
| 38 | |
| 39 | inline std::string basename(const path & p) |
| 40 | { |
| 41 | return p.stem().string(); |
| 42 | } |
| 43 | |
| 44 | inline path change_extension( const path & p, const path & new_extension ) |
| 45 | { |
| 46 | path new_p( p ); |
| 47 | new_p.replace_extension( new_extension ); |
| 48 | return new_p; |
| 49 | } |
| 50 | |
| 51 | # endif |
| 52 | |
| 53 | |
| 54 | } // namespace filesystem |
| 55 | } // namespace ndnboost |
| 56 | |
| 57 | #include <ndnboost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas |
| 58 | #endif // NDNBOOST_FILESYSTEM3_CONVENIENCE_HPP |