aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/StdOutStream.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CPP/Common/StdOutStream.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/CPP/Common/StdOutStream.h b/CPP/Common/StdOutStream.h
index 93f1dfa..bd15d7c 100644
--- a/CPP/Common/StdOutStream.h
+++ b/CPP/Common/StdOutStream.h
@@ -1,7 +1,7 @@
1// Common/StdOutStream.h 1// Common/StdOutStream.h
2 2
3#ifndef __COMMON_STD_OUT_STREAM_H 3#ifndef ZIP7_INC_COMMON_STD_OUT_STREAM_H
4#define __COMMON_STD_OUT_STREAM_H 4#define ZIP7_INC_COMMON_STD_OUT_STREAM_H
5 5
6#include <stdio.h> 6#include <stdio.h>
7 7
@@ -11,26 +11,28 @@
11class CStdOutStream 11class CStdOutStream
12{ 12{
13 FILE *_stream; 13 FILE *_stream;
14 bool _streamIsOpen; 14 // bool _streamIsOpen;
15public: 15public:
16 bool IsTerminalMode; 16 bool IsTerminalMode;
17 int CodePage; 17 int CodePage;
18 18
19 CStdOutStream(FILE *stream = 0): 19 CStdOutStream(FILE *stream = NULL):
20 _stream(stream), 20 _stream(stream),
21 _streamIsOpen(false), 21 // _streamIsOpen(false),
22 IsTerminalMode(false), 22 IsTerminalMode(false),
23 CodePage(-1) 23 CodePage(-1)
24 {}; 24 {}
25 25
26 ~CStdOutStream() { Close(); } 26 // ~CStdOutStream() { Close(); }
27 27
28 // void AttachStdStream(FILE *stream) { _stream = stream; _streamIsOpen = false; } 28 // void AttachStdStream(FILE *stream) { _stream = stream; _streamIsOpen = false; }
29 // bool IsDefined() const { return _stream != NULL; } 29 // bool IsDefined() const { return _stream != NULL; }
30 30
31 operator FILE *() { return _stream; } 31 operator FILE *() { return _stream; }
32 /*
32 bool Open(const char *fileName) throw(); 33 bool Open(const char *fileName) throw();
33 bool Close() throw(); 34 bool Close() throw();
35 */
34 bool Flush() throw(); 36 bool Flush() throw();
35 37
36 CStdOutStream & operator<<(CStdOutStream & (* func)(CStdOutStream &)) 38 CStdOutStream & operator<<(CStdOutStream & (* func)(CStdOutStream &))
@@ -60,7 +62,7 @@ public:
60 void PrintUString(const UString &s, AString &temp); 62 void PrintUString(const UString &s, AString &temp);
61 void Convert_UString_to_AString(const UString &src, AString &dest); 63 void Convert_UString_to_AString(const UString &src, AString &dest);
62 64
63 void Normalize_UString__LF_Allowed(UString &s); 65 void Normalize_UString_LF_Allowed(UString &s);
64 void Normalize_UString(UString &s); 66 void Normalize_UString(UString &s);
65 67
66 void NormalizePrint_UString(const UString &s, UString &tempU, AString &tempA); 68 void NormalizePrint_UString(const UString &s, UString &tempU, AString &tempA);