mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 13:15:04 -06:00
16 lines
240 B
C++
16 lines
240 B
C++
// CopyRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../Common/RegisterCodec.h"
|
|
|
|
#include "CopyCoder.h"
|
|
|
|
namespace NCompress {
|
|
|
|
REGISTER_CODEC_CREATE(CreateCodec, CCopyCoder())
|
|
|
|
REGISTER_CODEC_2(Copy, CreateCodec, CreateCodec, 0, "Copy")
|
|
|
|
}
|