doxygen comments
fluxgen fluxgen
1 files changed,
6 insertions(+),
3 deletions(-)
jump to
M
src/NotCopyable.hh
→
src/NotCopyable.hh
@@ -21,8 +21,11 @@ // DEALINGS IN THE SOFTWARE.
#ifndef NOTCOPYABLE_HH #define NOTCOPYABLE_HH -// inherit this class to -// disable assignment and copy + +/** Makes the inherited class not copyable. + inherit this class to + disable assignment and copy +*/ class NotCopyable { protected:@@ -33,4 +36,4 @@ NotCopyable(const NotCopyable &rhs); // copy constructor
NotCopyable &operator=(const NotCopyable &rhs); // assignment operator }; -#endif //_NOTCOPYBLE_HH_ +#endif //NOTCOPYBLE_HH