COMP: Directory and Glob have pointer data members
This commit is contained in:
parent
f9cbfbb458
commit
964719128c
|
@ -72,6 +72,9 @@ public:
|
||||||
private:
|
private:
|
||||||
// Private implementation details.
|
// Private implementation details.
|
||||||
DirectoryInternals* Internal;
|
DirectoryInternals* Internal;
|
||||||
|
|
||||||
|
Directory(const Directory&); // Not implemented.
|
||||||
|
void operator=(const Directory&); // Not implemented.
|
||||||
}; // End Class: Directory
|
}; // End Class: Directory
|
||||||
|
|
||||||
} // namespace @KWSYS_NAMESPACE@
|
} // namespace @KWSYS_NAMESPACE@
|
||||||
|
|
|
@ -90,6 +90,10 @@ protected:
|
||||||
GlobInternals* Internals;
|
GlobInternals* Internals;
|
||||||
bool Recurse;
|
bool Recurse;
|
||||||
kwsys_stl::string Relative;
|
kwsys_stl::string Relative;
|
||||||
|
|
||||||
|
private:
|
||||||
|
Glob(const Glob&); // Not implemented.
|
||||||
|
void operator=(const Glob&); // Not implemented.
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace @KWSYS_NAMESPACE@
|
} // namespace @KWSYS_NAMESPACE@
|
||||||
|
|
Loading…
Reference in New Issue