summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/Directory.hxx.in
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-03-25 11:47:51 (GMT)
committerBrad King <brad.king@kitware.com>2020-03-25 11:47:51 (GMT)
commit5f8d1668a2fab9697a4d1caa7cb6f44627082735 (patch)
tree2b2c4ee0dcd652039291e8dc67a5892c2384598d /Source/kwsys/Directory.hxx.in
parent69e495d10adeb7a9872f1698b60367e57e657fee (diff)
parent9d3b9ec4ab1a2756c54f2af2b418b8818268c964 (diff)
downloadCMake-5f8d1668a2fab9697a4d1caa7cb6f44627082735.zip
CMake-5f8d1668a2fab9697a4d1caa7cb6f44627082735.tar.gz
CMake-5f8d1668a2fab9697a4d1caa7cb6f44627082735.tar.bz2
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream * upstream-KWSys: KWSys 2020-03-25 (4380f1ae)
Diffstat (limited to 'Source/kwsys/Directory.hxx.in')
-rw-r--r--Source/kwsys/Directory.hxx.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/kwsys/Directory.hxx.in b/Source/kwsys/Directory.hxx.in
index ad8c51b..9b0f4c3 100644
--- a/Source/kwsys/Directory.hxx.in
+++ b/Source/kwsys/Directory.hxx.in
@@ -23,6 +23,11 @@ class @KWSYS_NAMESPACE@_EXPORT Directory
{
public:
Directory();
+ Directory(Directory&& other);
+ Directory(const Directory&) = delete;
+ Directory& operator=(const Directory&) = delete;
+ Directory& operator=(Directory&& other);
+ bool operator==(const Directory&) = delete;
~Directory();
/**
@@ -62,10 +67,7 @@ public:
private:
// Private implementation details.
DirectoryInternals* Internal;
-
- Directory(const Directory&); // Not implemented.
- void operator=(const Directory&); // Not implemented.
-}; // End Class: Directory
+}; // End Class: Directory
} // namespace @KWSYS_NAMESPACE@