xref: /aosp_15_r20/external/lzma/CPP/7zip/Compress/XzEncoder.h (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1*f6dc9357SAndroid Build Coastguard Worker // XzEncoder.h
2*f6dc9357SAndroid Build Coastguard Worker 
3*f6dc9357SAndroid Build Coastguard Worker #ifndef ZIP7_INC_XZ_ENCODER_H
4*f6dc9357SAndroid Build Coastguard Worker #define ZIP7_INC_XZ_ENCODER_H
5*f6dc9357SAndroid Build Coastguard Worker 
6*f6dc9357SAndroid Build Coastguard Worker #include "../../../C/XzEnc.h"
7*f6dc9357SAndroid Build Coastguard Worker 
8*f6dc9357SAndroid Build Coastguard Worker #include "../../Common/MyCom.h"
9*f6dc9357SAndroid Build Coastguard Worker 
10*f6dc9357SAndroid Build Coastguard Worker #include "../ICoder.h"
11*f6dc9357SAndroid Build Coastguard Worker 
12*f6dc9357SAndroid Build Coastguard Worker namespace NCompress {
13*f6dc9357SAndroid Build Coastguard Worker namespace NXz {
14*f6dc9357SAndroid Build Coastguard Worker 
15*f6dc9357SAndroid Build Coastguard Worker Z7_CLASS_IMP_COM_3(
16*f6dc9357SAndroid Build Coastguard Worker   CEncoder
17*f6dc9357SAndroid Build Coastguard Worker   , ICompressCoder
18*f6dc9357SAndroid Build Coastguard Worker   , ICompressSetCoderProperties
19*f6dc9357SAndroid Build Coastguard Worker   , ICompressSetCoderPropertiesOpt
20*f6dc9357SAndroid Build Coastguard Worker )
21*f6dc9357SAndroid Build Coastguard Worker   CXzEncHandle _encoder;
22*f6dc9357SAndroid Build Coastguard Worker public:
23*f6dc9357SAndroid Build Coastguard Worker   CXzProps xzProps;
24*f6dc9357SAndroid Build Coastguard Worker 
25*f6dc9357SAndroid Build Coastguard Worker   void InitCoderProps();
26*f6dc9357SAndroid Build Coastguard Worker   HRESULT SetCheckSize(UInt32 checkSizeInBytes);
27*f6dc9357SAndroid Build Coastguard Worker   HRESULT SetCoderProp(PROPID propID, const PROPVARIANT &prop);
28*f6dc9357SAndroid Build Coastguard Worker 
29*f6dc9357SAndroid Build Coastguard Worker   CEncoder();
30*f6dc9357SAndroid Build Coastguard Worker   ~CEncoder();
31*f6dc9357SAndroid Build Coastguard Worker };
32*f6dc9357SAndroid Build Coastguard Worker 
33*f6dc9357SAndroid Build Coastguard Worker }}
34*f6dc9357SAndroid Build Coastguard Worker 
35*f6dc9357SAndroid Build Coastguard Worker #endif
36