aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/NotCopyable.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2002-12-01 13:42:15 (GMT)
committerrathnor <rathnor>2002-12-01 13:42:15 (GMT)
commit28b5c604490094e187494dcc566bd3d7a05a2c25 (patch)
tree8f78f5714a5cd055c10b067a2656fe7b2338e71a /src/FbTk/NotCopyable.hh
parentb9134162f9633784d9097df18769a699a62650fe (diff)
downloadfluxbox-28b5c604490094e187494dcc566bd3d7a05a2c25.zip
fluxbox-28b5c604490094e187494dcc566bd3d7a05a2c25.tar.bz2
Indenting from tabs to emacs 4-space
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