CppCommon 1.0.6.0
C++ Common Library
Loading...
Searching...
No Matches
directory.inl
Go to the documentation of this file.
1
8
9namespace CppCommon {
10
11inline void Directory::swap(Directory& directory) noexcept
12{
13 using std::swap;
14 Path::swap(directory);
15}
16
17inline void swap(Directory& directory1, Directory& directory2) noexcept
18{
19 directory1.swap(directory2);
20}
21
22} // namespace CppCommon
void swap(Directory &directory) noexcept
Swap two instances.
Definition directory.inl:11
Directory()
Initialize directory with an empty path.
Definition directory.h:33
void swap(Path &path) noexcept
Swap two instances.
Definition path.inl:32
C++ Common project definitions.
void swap(FileCache &cache1, FileCache &cache2) noexcept
Definition filecache.inl:23