view mupdf-source/thirdparty/zxing-cpp/core/src/CharacterSet.h @ 21:2f43e400f144

Provide an "all" target to build both the sdist and the wheel
author Franz Glasner <fzglas.hg@dom66.de>
date Fri, 19 Sep 2025 10:28:53 +0200
parents b50eed0cc0ef
children
line wrap: on
line source

/*
* Copyright 2016 Nu-book Inc.
*/
// SPDX-License-Identifier: Apache-2.0

#pragma once

#include <string>
#include <string_view>

namespace ZXing {

enum class CharacterSet : unsigned char
{
	Unknown,
	ASCII,
	ISO8859_1,
	ISO8859_2,
	ISO8859_3,
	ISO8859_4,
	ISO8859_5,
	ISO8859_6,
	ISO8859_7,
	ISO8859_8,
	ISO8859_9,
	ISO8859_10,
	ISO8859_11,
	ISO8859_13,
	ISO8859_14,
	ISO8859_15,
	ISO8859_16,
	Cp437,
	Cp1250,
	Cp1251,
	Cp1252,
	Cp1256,

	Shift_JIS,
	Big5,
	GB2312,
	GB18030,
	EUC_JP,
	EUC_KR,
	UTF16BE,
	UnicodeBig [[deprecated]] = UTF16BE,
	UTF8,
	UTF16LE,
	UTF32BE,
	UTF32LE,

	BINARY,

	CharsetCount
};

CharacterSet CharacterSetFromString(std::string_view name);
std::string ToString(CharacterSet cs);

} // ZXing