aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/StdOutStream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Common/StdOutStream.cpp')
-rw-r--r--CPP/Common/StdOutStream.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/CPP/Common/StdOutStream.cpp b/CPP/Common/StdOutStream.cpp
index 40799e2..cfa5fde 100644
--- a/CPP/Common/StdOutStream.cpp
+++ b/CPP/Common/StdOutStream.cpp
@@ -11,11 +11,12 @@
11#include "StringConvert.h" 11#include "StringConvert.h"
12#include "UTFConvert.h" 12#include "UTFConvert.h"
13 13
14#define kFileOpenMode "wt"
15
16CStdOutStream g_StdOut(stdout); 14CStdOutStream g_StdOut(stdout);
17CStdOutStream g_StdErr(stderr); 15CStdOutStream g_StdErr(stderr);
18 16
17/*
18// #define kFileOpenMode "wt"
19
19bool CStdOutStream::Open(const char *fileName) throw() 20bool CStdOutStream::Open(const char *fileName) throw()
20{ 21{
21 Close(); 22 Close();
@@ -34,6 +35,7 @@ bool CStdOutStream::Close() throw()
34 _streamIsOpen = false; 35 _streamIsOpen = false;
35 return true; 36 return true;
36} 37}
38*/
37 39
38bool CStdOutStream::Flush() throw() 40bool CStdOutStream::Flush() throw()
39{ 41{
@@ -73,7 +75,7 @@ void CStdOutStream::Convert_UString_to_AString(const UString &src, AString &dest
73 75
74static const wchar_t kReplaceChar = '_'; 76static const wchar_t kReplaceChar = '_';
75 77
76void CStdOutStream::Normalize_UString__LF_Allowed(UString &s) 78void CStdOutStream::Normalize_UString_LF_Allowed(UString &s)
77{ 79{
78 unsigned len = s.Len(); 80 unsigned len = s.Len();
79 wchar_t *d = s.GetBuf(); 81 wchar_t *d = s.GetBuf();