diff options
Diffstat (limited to '')
-rw-r--r-- | CPP/Common/StdInStream.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/CPP/Common/StdInStream.h b/CPP/Common/StdInStream.h index 71578eb..81ca3bf 100644 --- a/CPP/Common/StdInStream.h +++ b/CPP/Common/StdInStream.h | |||
@@ -1,7 +1,7 @@ | |||
1 | // Common/StdInStream.h | 1 | // Common/StdInStream.h |
2 | 2 | ||
3 | #ifndef __COMMON_STD_IN_STREAM_H | 3 | #ifndef ZIP7_INC_COMMON_STD_IN_STREAM_H |
4 | #define __COMMON_STD_IN_STREAM_H | 4 | #define ZIP7_INC_COMMON_STD_IN_STREAM_H |
5 | 5 | ||
6 | #include <stdio.h> | 6 | #include <stdio.h> |
7 | 7 | ||
@@ -11,20 +11,22 @@ | |||
11 | class CStdInStream | 11 | class CStdInStream |
12 | { | 12 | { |
13 | FILE *_stream; | 13 | FILE *_stream; |
14 | bool _streamIsOpen; | 14 | // bool _streamIsOpen; |
15 | public: | 15 | public: |
16 | int CodePage; | 16 | int CodePage; |
17 | 17 | ||
18 | CStdInStream(FILE *stream = NULL): | 18 | CStdInStream(FILE *stream = NULL): |
19 | _stream(stream), | 19 | _stream(stream), |
20 | _streamIsOpen(false), | 20 | // _streamIsOpen(false), |
21 | CodePage(-1) | 21 | CodePage(-1) |
22 | {}; | 22 | {} |
23 | 23 | ||
24 | /* | ||
24 | ~CStdInStream() { Close(); } | 25 | ~CStdInStream() { Close(); } |
25 | 26 | ||
26 | bool Open(LPCTSTR fileName) throw(); | 27 | bool Open(LPCTSTR fileName) throw(); |
27 | bool Close() throw(); | 28 | bool Close() throw(); |
29 | */ | ||
28 | 30 | ||
29 | // returns: | 31 | // returns: |
30 | // false, if ZERO character in stream | 32 | // false, if ZERO character in stream |