aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/unicode/normalization/custom_encoder.h
blob: ef4d5b7f6560a01d332506de68cc7082821139cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <library/cpp/charset/codepage.h>

struct TCustomEncoder: public Encoder {
    void Create(const CodePage* target, bool extended = false);
    ~TCustomEncoder();

private:
    void addToTable(wchar32 ucode, unsigned char code, const CodePage* target);
};