mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-08 03:57:21 +01:00
enh(Foundation): modernised header files (override, using, nullptr, ...)
This commit is contained in:
@@ -31,14 +31,14 @@ class Foundation_API Windows1251Encoding: public TextEncoding
|
||||
{
|
||||
public:
|
||||
Windows1251Encoding();
|
||||
~Windows1251Encoding();
|
||||
const char* canonicalName() const;
|
||||
bool isA(const std::string& encodingName) const;
|
||||
const CharacterMap& characterMap() const;
|
||||
int convert(const unsigned char* bytes) const;
|
||||
int convert(int ch, unsigned char* bytes, int length) const;
|
||||
int queryConvert(const unsigned char* bytes, int length) const;
|
||||
int sequenceLength(const unsigned char* bytes, int length) const;
|
||||
~Windows1251Encoding() override;
|
||||
const char* canonicalName() const override;
|
||||
bool isA(const std::string& encodingName) const override;
|
||||
const CharacterMap& characterMap() const override;
|
||||
int convert(const unsigned char* bytes) const override;
|
||||
int convert(int ch, unsigned char* bytes, int length) const override;
|
||||
int queryConvert(const unsigned char* bytes, int length) const override;
|
||||
int sequenceLength(const unsigned char* bytes, int length) const override;
|
||||
|
||||
private:
|
||||
static const char* _names[];
|
||||
|
||||
Reference in New Issue
Block a user