COMP: Directory and Glob have pointer data members

This commit is contained in:
Mathieu Malaterre 2007-08-16 07:38:47 -04:00
parent f9cbfbb458
commit 964719128c
2 changed files with 7 additions and 0 deletions

View File

@ -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@

View File

@ -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@