Files
easy7zip/CPP/7zip/Compress/Lzma2Encoder.h
Igor Pavlov a36c48cece 23.01
2023-12-22 17:17:05 +00:00

31 lines
452 B
C++
Executable File

// Lzma2Encoder.h
#ifndef ZIP7_INC_LZMA2_ENCODER_H
#define ZIP7_INC_LZMA2_ENCODER_H
#include "../../../C/Lzma2Enc.h"
#include "../../Common/MyCom.h"
#include "../ICoder.h"
namespace NCompress {
namespace NLzma2 {
Z7_CLASS_IMP_COM_4(
CEncoder
, ICompressCoder
, ICompressSetCoderProperties
, ICompressWriteCoderProperties
, ICompressSetCoderPropertiesOpt
)
CLzma2EncHandle _encoder;
public:
CEncoder();
~CEncoder();
};
}}
#endif