diff options
author | rathnor <rathnor> | 2002-12-01 13:42:15 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2002-12-01 13:42:15 (GMT) |
commit | 28b5c604490094e187494dcc566bd3d7a05a2c25 (patch) | |
tree | 8f78f5714a5cd055c10b067a2656fe7b2338e71a /src/FbTk/NotCopyable.hh | |
parent | b9134162f9633784d9097df18769a699a62650fe (diff) | |
download | fluxbox_pavel-28b5c604490094e187494dcc566bd3d7a05a2c25.zip fluxbox_pavel-28b5c604490094e187494dcc566bd3d7a05a2c25.tar.bz2 |
Indenting from tabs to emacs 4-space
Diffstat (limited to 'src/FbTk/NotCopyable.hh')
-rw-r--r-- | src/FbTk/NotCopyable.hh | 10 |
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 @@ | |||
25 | namespace FbTk { | 25 | namespace 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 | */ |
31 | class NotCopyable | 31 | class NotCopyable |
32 | { | 32 | { |
33 | protected: | 33 | protected: |
34 | NotCopyable() {} | 34 | NotCopyable() {} |
35 | private: | 35 | private: |
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 |