aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-06-26 12:24:11 (GMT)
committerPavel Labath <pavelo@centrum.sk>2011-06-26 12:24:11 (GMT)
commit4d9af5d62a0e51279eec49cfc5aed5be10232210 (patch)
treecc46eae56f783ee6a44340a0423957cb2f242cd9 /src/FbTk
parent0a39d13b503937f3ada42382e4d234693b4b7e5e (diff)
downloadfluxbox_pavel-4d9af5d62a0e51279eec49cfc5aed5be10232210.zip
fluxbox_pavel-4d9af5d62a0e51279eec49cfc5aed5be10232210.tar.bz2
Mark FbTk::StringConvertor as NotCopyable
Diffstat (limited to 'src/FbTk')
-rw-r--r--src/FbTk/FbString.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/FbTk/FbString.hh b/src/FbTk/FbString.hh
index 55798e5..4f3e792 100644
--- a/src/FbTk/FbString.hh
+++ b/src/FbTk/FbString.hh
@@ -30,6 +30,8 @@
30#include <iconv.h> 30#include <iconv.h>
31#endif // HAVE_ICONV 31#endif // HAVE_ICONV
32 32
33#include "NotCopyable.hh"
34
33namespace FbTk { 35namespace FbTk {
34 36
35// Use this type for things converted to our internal encoding (UTF-8) 37// Use this type for things converted to our internal encoding (UTF-8)
@@ -75,7 +77,7 @@ bool haveUTF8();
75 77
76} // namespace FbStringUtil 78} // namespace FbStringUtil
77 79
78class StringConvertor { 80class StringConvertor: private NotCopyable {
79public: 81public:
80 82
81 enum EncodingTarget { ToFbString, ToLocaleStr }; 83 enum EncodingTarget { ToFbString, ToLocaleStr };