doxygen comments
This commit is contained in:
parent
c53db7f1b2
commit
220be8333b
1 changed files with 6 additions and 3 deletions
|
@ -21,8 +21,11 @@
|
||||||
|
|
||||||
#ifndef NOTCOPYABLE_HH
|
#ifndef NOTCOPYABLE_HH
|
||||||
#define 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
|
class NotCopyable
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
|
@ -33,4 +36,4 @@ private:
|
||||||
NotCopyable &operator=(const NotCopyable &rhs); // assignment operator
|
NotCopyable &operator=(const NotCopyable &rhs); // assignment operator
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //_NOTCOPYBLE_HH_
|
#endif //NOTCOPYBLE_HH
|
||||||
|
|
Loading…
Reference in a new issue