aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/codecs/delta_codec.cpp
blob: 28d6b6e3bb92b246698a6cf70a710e83fb1ad871 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "delta_codec.h" 
 
namespace NCodecs { 
    template <>
    TStringBuf TDeltaCodec<ui64, true>::MyName() {
        return "delta64-unsigned";
    }
    template <>
    TStringBuf TDeltaCodec<ui32, true>::MyName() {
        return "delta32-unsigned";
    }
    template <>
    TStringBuf TDeltaCodec<ui64, false>::MyName() {
        return "delta64-signed";
    }
    template <>
    TStringBuf TDeltaCodec<ui32, false>::MyName() {
        return "delta32-signed";
    }
 
}