Apache::RSS::Encoding - ABSTRACT CLASS.


Apache-RSS documentation Contained in the Apache-RSS distribution.

Index


Code Index:

NAME

Top

Apache::RSS::Encoding - ABSTRACT CLASS.

SYNOPSIS

Top

  RSSScanHTMLTitle On
  RSSEncodeHandler Apache::RSS::Encoding::JcodeUTF8

DESCRIPTION

Top

RSS codeset conversion Handler.

AUTHOR

Top

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.

SEE ALSO

Top

Apache::RSS::Encoding::JcodeUTF8


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__