repo.or.cz
/
xcsoar.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
android/GlueIOIOPort: fix spurious errors after IOIO baud rate change
[xcsoar.git]
/
src
/
Util
/
tstring.hpp
blob
5f5f5fa3cba485b4a00c3e97b79c77d8cd05ce3e
1
#ifndef TSTRING_HPP
2
#define TSTRING_HPP
3
4
#include <string>
5
6
#ifdef _UNICODE
7
#include <tchar.h>
8
typedef std
::
wstring tstring
;
9
#else
10
typedef std
::
string tstring
;
11
#endif
12
13
tstring
&
14
trim_inplace
(
tstring
&
s
);
15
16
#endif