repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Restore the "GPL licensing not permitted" in GLUT license headers.
[haiku.git]
/
headers
/
cpp
/
string
blob
3865c418b211cc4a2a45d7d6c9713e6cfe6b29c5
1
// Main header for the -*- C++ -*- string classes.
2
3
#ifndef __STRING__
4
#define __STRING__
5
6
#include <std/bastring.h>
7
8
extern "C++" {
9
typedef basic_string <char> string;
10
typedef basic_string <wchar_t> wstring;
11
} // extern "C++"
12
13
#endif