mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-16 07:07:13 +02:00
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.
This commit is contained in:
48
vendor/POCO/Encodings/include/Poco/ISO8859_3Encoding.h
vendored
Normal file
48
vendor/POCO/Encodings/include/Poco/ISO8859_3Encoding.h
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
//
|
||||
// ISO8859_3Encoding.h
|
||||
//
|
||||
// Library: Encodings
|
||||
// Package: Encodings
|
||||
// Module: ISO8859_3Encoding
|
||||
//
|
||||
// Definition of the Windows1252Encoding class.
|
||||
//
|
||||
// Copyright (c) 2018, Applied Informatics Software Engineering GmbH.
|
||||
// and Contributors.
|
||||
//
|
||||
// SPDX-License-Identifier: BSL-1.0
|
||||
//
|
||||
|
||||
|
||||
#ifndef Encodings_ISO8859_3Encoding_INCLUDED
|
||||
#define Encodings_ISO8859_3Encoding_INCLUDED
|
||||
|
||||
|
||||
#include "Poco/DoubleByteEncoding.h"
|
||||
|
||||
|
||||
namespace Poco {
|
||||
|
||||
|
||||
class Encodings_API ISO8859_3Encoding: public DoubleByteEncoding
|
||||
/// ISO-8859-3 Encoding.
|
||||
///
|
||||
/// This text encoding class has been generated from
|
||||
/// http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-3.TXT.
|
||||
{
|
||||
public:
|
||||
ISO8859_3Encoding();
|
||||
~ISO8859_3Encoding();
|
||||
|
||||
private:
|
||||
static const char* _names[];
|
||||
static const CharacterMap _charMap;
|
||||
static const Mapping _mappingTable[];
|
||||
static const Mapping _reverseMappingTable[];
|
||||
};
|
||||
|
||||
|
||||
} // namespace Poco
|
||||
|
||||
|
||||
#endif // Encodings_ISO8859_3Encoding_INCLUDED
|
Reference in New Issue
Block a user