mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 19:14:56 -06:00
36 lines
474 B
C++
Executable File
36 lines
474 B
C++
Executable File
// Tar/Handler.h
|
|
|
|
#ifndef __TAR_HANDLER_H
|
|
#define __TAR_HANDLER_H
|
|
|
|
#include "Common/MyCom.h"
|
|
#include "../IArchive.h"
|
|
|
|
#include "TarItem.h"
|
|
|
|
namespace NArchive {
|
|
namespace NTar {
|
|
|
|
class CHandler:
|
|
public IInArchive,
|
|
public IOutArchive,
|
|
public CMyUnknownImp
|
|
{
|
|
public:
|
|
MY_UNKNOWN_IMP2(
|
|
IInArchive,
|
|
IOutArchive
|
|
)
|
|
|
|
INTERFACE_IInArchive(;)
|
|
INTERFACE_IOutArchive(;)
|
|
|
|
private:
|
|
CObjectVector<CItemEx> _items;
|
|
CMyComPtr<IInStream> _inStream;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|