mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 03:14:59 -06:00
29 lines
356 B
C++
Executable File
29 lines
356 B
C++
Executable File
// CabHandler.h
|
|
|
|
#ifndef __CAB_HANDLER_H
|
|
#define __CAB_HANDLER_H
|
|
|
|
#include "Common/MyCom.h"
|
|
#include "../IArchive.h"
|
|
#include "CabIn.h"
|
|
|
|
namespace NArchive {
|
|
namespace NCab {
|
|
|
|
class CHandler:
|
|
public IInArchive,
|
|
public CMyUnknownImp
|
|
{
|
|
public:
|
|
MY_UNKNOWN_IMP1(IInArchive)
|
|
|
|
INTERFACE_IInArchive(;)
|
|
|
|
private:
|
|
CMvDatabaseEx m_Database;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|