| Apache-RSS documentation | Contained in the Apache-RSS distribution. |
Apache::RSS::Encoding - ABSTRACT CLASS.
RSSScanHTMLTitle On RSSEncodeHandler Apache::RSS::Encoding::JcodeUTF8
RSS codeset conversion Handler.
IKEBE Tomohiro <ikebe@edge.co.jp>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Apache-RSS documentation | Contained in the Apache-RSS distribution. |
package Apache::RSS::Encoding; # $Id: Encoding.pm,v 1.3 2002/05/30 14:05:15 ikechin Exp $ # # IKEBE Tomohiro <ikebe@edge.co.jp> # Livin' On The EDGE, Limited. # Time-stamp: <2002-05-30 22:25:45 miyagawa> use strict; require Carp; sub new { my $class = shift; my $self = bless {}, $class; $self; } sub encode { Carp::croak("ABSTRACT METHOD!!"); } 1; __END__