Locale::RecodeData(3pm) | User Contributed Perl Documentation | Locale::RecodeData(3pm) |
Locale::RecodeData - Abstract Base Class for Charset Converters
# For compatibility with Perl 5.005 and earlier, you must # *use* the module before inheriting from it! use qw (Locale::RecodeData); use base qw (Locale::RecodeData);
The module Locale::RecodeData serves as an abstract base class to all converters used by Locale::Recode(3).
Adding new conversion modules is currently not straightforward, and you will have to edit the sources of some modules for that purpose.
First, you have to add your new converter class to the list found in Locale::_Conversions(3), so that Locale::Recode(3) knows about its presence. If there are valid aliases for the codeset of your converter, you will also have to edit Locale::_Aliases(3).
Finally, you have to implement the (protected) conversion routine _recode(). See below ("INTERFACE") for details.
You normally don't have to implement the constructor. The default constructor implemented here will store the source and destination codesets in the protected members "_from" and "_to".
The class implements one method:
New conversion classes must provide the following interface:
This method is implemented in the base class already.
Copyright (C) 2002-2016 Guido Flohr <http://www.guido-flohr.net/> (<mailto:guido.flohr@cantanea.com>), all rights reserved. See the source code for details!code for details!
Locale::Recode::_Aliases(3pm), Locale::Recode::_Conversions(3pm), Locale::Recode(3pm), perl(1)
2022-06-09 | perl v5.32.1 |