]> git.sesse.net Git - ccbs/commitdiff
Add default constructor for widestring.
authorSteinar H. Gunderson <sesse@samfundet.no>
Sat, 19 Feb 2005 16:30:58 +0000 (16:30 +0000)
committerSteinar H. Gunderson <sesse@samfundet.no>
Sat, 19 Feb 2005 16:30:58 +0000 (16:30 +0000)
bigscreen/widestring.cpp
bigscreen/widestring.h

index 52b7f559e48acf406ecb58e9bb008369b4ccd0a3..9193586379e63b7474ed9f57df0826aeb214b1be 100644 (file)
@@ -7,6 +7,10 @@
 static iconv_t ucs4_iconv;
 static bool iconv_initialized = false;
 
+widestring::widestring()
+{
+}
+
 widestring::widestring(const char *from)
 {
        *this = from;
index 67f00b5b59d96eae4d9b35474ca7a35141287606..437428c8ad316ff2c05341935053fb81c2275f07 100644 (file)
@@ -7,6 +7,7 @@
 class widestring : public std::wstring
 {
 public:
+       widestring();
        widestring(const char *from);
        void operator= (const char *from);
 };