mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 05:15:01 -06:00
31 lines
429 B
C++
Executable File
31 lines
429 B
C++
Executable File
// Archive/cpio/Handler.h
|
|
|
|
#ifndef __ARCHIVE_CPIO_HANDLER_H
|
|
#define __ARCHIVE_CPIO_HANDLER_H
|
|
|
|
#include "Common/MyCom.h"
|
|
#include "../IArchive.h"
|
|
|
|
#include "CpioItem.h"
|
|
|
|
namespace NArchive {
|
|
namespace NCpio {
|
|
|
|
class CHandler:
|
|
public IInArchive,
|
|
public CMyUnknownImp
|
|
{
|
|
public:
|
|
MY_UNKNOWN_IMP1(IInArchive)
|
|
|
|
INTERFACE_IInArchive(;)
|
|
|
|
private:
|
|
CObjectVector<CItemEx> _items;
|
|
CMyComPtr<IInStream> _inStream;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|