CppCommon 1.0.5.0
C++ Common Library
Loading...
Searching...
No Matches
directory.inl
Go to the documentation of this file.
1
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
Filesystem directory.
Definition directory.h:25
friend void swap(Directory &directory1, Directory &directory2) noexcept
Definition directory.inl:17
friend void swap(Path &path1, Path &path2) noexcept
Definition path.inl:38
C++ Common project definitions.
void swap(FileCache &cache1, FileCache &cache2) noexcept
Definition filecache.inl:23