1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/vendor/POCO/Encodings/include/Poco/ISO8859_13Encoding.h
Sandu Liviu Catalin 4a6bfc086c Major plugin refactor and cleanup.
Switched to POCO library for unified platform/library interface.
Deprecated the external module API. It was creating more problems than solving.
Removed most built-in libraries in favor of system libraries for easier maintenance.
Cleaned and secured code with help from static analyzers.
2021-01-30 08:51:39 +02:00

49 lines
958 B
C++

//
// ISO8859_13Encoding.h
//
// Library: Encodings
// Package: Encodings
// Module: ISO8859_13Encoding
//
// Definition of the Windows1252Encoding class.
//
// Copyright (c) 2018, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef Encodings_ISO8859_13Encoding_INCLUDED
#define Encodings_ISO8859_13Encoding_INCLUDED
#include "Poco/DoubleByteEncoding.h"
namespace Poco {
class Encodings_API ISO8859_13Encoding: public DoubleByteEncoding
/// ISO-8859-13 Encoding.
///
/// This text encoding class has been generated from
/// http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-13.TXT.
{
public:
ISO8859_13Encoding();
~ISO8859_13Encoding();
private:
static const char* _names[];
static const CharacterMap _charMap;
static const Mapping _mappingTable[];
static const Mapping _reverseMappingTable[];
};
} // namespace Poco
#endif // Encodings_ISO8859_13Encoding_INCLUDED