aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/NotCopyable.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/NotCopyable.hh')
-rw-r--r--src/FbTk/NotCopyable.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/FbTk/NotCopyable.hh b/src/FbTk/NotCopyable.hh
index e575b9e..8310762 100644
--- a/src/FbTk/NotCopyable.hh
+++ b/src/FbTk/NotCopyable.hh
@@ -25,16 +25,16 @@
25namespace FbTk { 25namespace FbTk {
26 26
27/** Makes the inherited class not copyable. 27/** Makes the inherited class not copyable.
28 inherit this class to 28 inherit this class to
29 disable assignment and copy 29 disable assignment and copy
30*/ 30*/
31class NotCopyable 31class NotCopyable
32{ 32{
33protected: 33protected:
34 NotCopyable() {} 34 NotCopyable() {}
35private: 35private:
36 NotCopyable(const NotCopyable &rhs); // copy constructor 36 NotCopyable(const NotCopyable &rhs); // copy constructor
37 NotCopyable &operator=(const NotCopyable &rhs); // assignment operator 37 NotCopyable &operator=(const NotCopyable &rhs); // assignment operator
38}; 38};
39 39
40}; // end namespace FbTk 40}; // end namespace FbTk