chdman/3rdparty/lzma/CPP/7zip/Compress/PpmdRegister.cpp
2022-01-05 08:45:19 +02:00

23 lines
285 B
C++

// PpmdRegister.cpp
#include "StdAfx.h"
#include "../Common/RegisterCodec.h"
#include "PpmdDecoder.h"
#ifndef EXTRACT_ONLY
#include "PpmdEncoder.h"
#endif
namespace NCompress {
namespace NPpmd {
REGISTER_CODEC_E(PPMD,
CDecoder(),
CEncoder(),
0x30401,
"PPMD")
}}