common/tools/raptor/XML/SAX/PurePerl/Reader/UnicodeExt.pm
changeset 923 5ccf9d5ab663
parent 922 996297fad800
parent 907 bab81256b297
child 924 a5ed0e6ca679
--- a/common/tools/raptor/XML/SAX/PurePerl/Reader/UnicodeExt.pm	Thu Mar 11 13:20:26 2010 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-# $Id: UnicodeExt.pm,v 1.4 2003/07/30 13:39:23 matt Exp $
-
-package XML::SAX::PurePerl::Reader;
-use strict;
-
-use Encode;
-
-sub set_raw_stream {
-    my ($fh) = @_;
-    binmode($fh, ":bytes");
-}
-
-sub switch_encoding_stream {
-    my ($fh, $encoding) = @_;
-    binmode($fh, ":encoding($encoding)");
-}
-
-sub switch_encoding_string {
-    Encode::from_to($_[0], $_[1], "utf-8");
-}
-
-1;
-