all repos — fluxbox @ 220be8333b7bd52cb02ec5da76eb5d62c4ee9a5b

custom fork of the fluxbox windowmanager

doxygen comments
fluxgen fluxgen
commit

220be8333b7bd52cb02ec5da76eb5d62c4ee9a5b

parent

c53db7f1b226031e3550086446316282655d5502

1 files changed, 6 insertions(+), 3 deletions(-)

jump to
M src/NotCopyable.hhsrc/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