doxygen comments

This commit is contained in:
fluxgen 2002-07-14 00:30:44 +00:00
parent c53db7f1b2
commit 220be8333b

View file

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