Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LzhHandler.h « Lzh « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed504dd2601f1fb11eb3c3575a4eb67e4ef5b53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// LzhHandler.h

#ifndef __LZH_HANDLER_H
#define __LZH_HANDLER_H

#include "Common/MyCom.h"
#include "../IArchive.h"
#include "LzhIn.h"

namespace NArchive {
namespace NLzh {

class CHandler:
  public IInArchive,
  public CMyUnknownImp
{
public:
  MY_UNKNOWN_IMP1(IInArchive)

  INTERFACE_IInArchive(;)

  CHandler();
private:
  CObjectVector<CItemEx> _items;
  CMyComPtr<IInStream> _stream;
};

}}

#endif