projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add default constructor for widestring.
[ccbs]
/
bigscreen
/
widestring.h
1
#ifndef _WIDESTRING_H
2
#define _WIDESTRING_H 1
3
4
#include <string>
5
6
// UCS-4 string with support for getting from UTF-8
7
class widestring : public std::wstring
8
{
9
public:
10
widestring();
11
widestring(const char *from);
12
void operator= (const char *from);
13
};
14
15
#endif /* !defined(_WIDESTRING_H) */