chdman/3rdparty/lzma/CPP/7zip/Compress/PpmdRegister.cpp

23 lines
285 B
C++
Raw Permalink Normal View History

2021-12-14 11:06:18 +00:00
// 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")
}}