mame/3rdparty/lzma/CPP/7zip/Compress/Lzma2Encoder.h
2023-12-06 07:58:49 +11:00

31 lines
452 B
C++

// 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