misc/libphysfs/lzma/CPP/7zip/Archive/Common/DummyOutStream.h
branchui-scaling
changeset 15283 c4fd2813b127
parent 13390 0135e64c6c66
parent 15279 7ab5cf405686
child 15663 d92eeb468dad
equal deleted inserted replaced
13390:0135e64c6c66 15283:c4fd2813b127
     1 // DummyOutStream.h
       
     2 
       
     3 #ifndef __DUMMYOUTSTREAM_H
       
     4 #define __DUMMYOUTSTREAM_H
       
     5 
       
     6 #include "../../IStream.h"
       
     7 #include "Common/MyCom.h"
       
     8 
       
     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 Init() { _size = 0; }
       
    18   MY_UNKNOWN_IMP
       
    19   STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
       
    20   UInt64 GetSize() const { return _size; }
       
    21 };
       
    22 
       
    23 #endif