summaryrefslogtreecommitdiffstats
path: root/hostTools/lzma/compress/AriConst.h
blob: 1e429ddea4f99f5f65f89b81f1a5b525ea532846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __ARICONST_H
#define __ARICONST_H

#include "AriBitCoder.h"

typedef NCompression::NArithmetic::CRangeEncoder CMyRangeEncoder;
typedef NCompression::NArithmetic::CRangeDecoder CMyRangeDecoder;

template <int aNumMoveBits> class CMyBitEncoder: 
    public NCompression::NArithmetic::CBitEncoder<aNumMoveBits> {};
template <int aNumMoveBits> class CMyBitDecoder: 
    public NCompression::NArithmetic::CBitDecoder<aNumMoveBits> {};

#endif