view src/win32/7zip/7z/CPP/7zip/Archive/Common/DummyOutStream.h @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
line wrap: on
line source
1 // DummyOutStream.h
3 #ifndef __DUMMYOUTSTREAM_H
4 #define __DUMMYOUTSTREAM_H
6 #include "../../IStream.h"
7 #include "Common/MyCom.h"
9 class CDummyOutStream:
10 public ISequentialOutStream,
11 public CMyUnknownImp
12 {
13 CMyComPtr<ISequentialOutStream> _stream;
14 UInt64 _size;
15 public:
16 void SetStream(ISequentialOutStream *outStream) { _stream = outStream; }
17 void ReleaseStream() { _stream.Release(); }
18 void Init() { _size = 0; }
19 MY_UNKNOWN_IMP
20 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
21 UInt64 GetSize() const { return _size; }
22 };
24 #endif