aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 };