mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
20 lines
343 B
C++
20 lines
343 B
C++
// CoderMixer.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "CoderMixer.h"
|
|
|
|
namespace NCoderMixer {
|
|
|
|
void CCoderInfo::SetCoderInfo(const UInt64 *inSize, const UInt64 *outSize)
|
|
{
|
|
InSizeAssigned = (inSize != 0);
|
|
if (InSizeAssigned)
|
|
InSizeValue = *inSize;
|
|
OutSizeAssigned = (outSize != 0);
|
|
if (OutSizeAssigned)
|
|
OutSizeValue = *outSize;
|
|
}
|
|
|
|
}
|