Skip to content
Snippets Groups Projects
Commit d944867d authored by Mathieu Malaterre's avatar Mathieu Malaterre
Browse files

COMP: Directory and Glob have pointer data members

parent 5666470f
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,9 @@ public:
private:
// Private implementation details.
DirectoryInternals* Internal;
Directory(const Directory&); // Not implemented.
void operator=(const Directory&); // Not implemented.
}; // End Class: Directory
} // namespace @KWSYS_NAMESPACE@
......
......@@ -90,6 +90,10 @@ protected:
GlobInternals* Internals;
bool Recurse;
kwsys_stl::string Relative;
private:
Glob(const Glob&); // Not implemented.
void operator=(const Glob&); // Not implemented.
};
} // namespace @KWSYS_NAMESPACE@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment