mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 06:05:58 -06:00
.reference
git-svn-id: svn://ultimatepp.org/upp/trunk@15734 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
ff78c94435
commit
cf264c52f7
1 changed files with 4 additions and 4 deletions
|
|
@ -7,25 +7,25 @@ CONSOLE_APP_MAIN
|
|||
StdLogSetup(LOG_COUT|LOG_FILE);
|
||||
{
|
||||
String h = "Hello world";
|
||||
std::string sh = h;
|
||||
std::string sh = h.ToStd();
|
||||
DDUMP(sh);
|
||||
h = sh;
|
||||
DDUMP(h);
|
||||
Value v = sh;
|
||||
DDUMP(v);
|
||||
sh = v;
|
||||
sh = v.ToStd();
|
||||
DDUMP(sh);
|
||||
}
|
||||
|
||||
{
|
||||
WString h = "Hello world";
|
||||
std::wstring sh = h;
|
||||
std::wstring sh = h.ToStd();
|
||||
DDUMP(sh);
|
||||
h = sh;
|
||||
DDUMP(h);
|
||||
Value v = sh;
|
||||
DDUMP(v);
|
||||
sh = v;
|
||||
sh = v.ToWStd();
|
||||
DDUMP(sh);
|
||||
}
|
||||
CheckLogEtalon();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue