# $Id: Mod_EUCJP.pm,v 2.1 2013/02/18 02:23:56 dankogai Exp $
# This file is in euc-jp
package
Mod_EUCJP;
no
warnings
"deprecated"
;
sub
new {
my
$class
=
shift
;
my
$str
=
shift
||
qw/½é´üʸ»úÎó/
;
my
$self
=
bless
{
str
=>
''
,
},
$class
;
$self
->set(
$str
);
$self
;
}
sub
set {
my
(
$self
,
$str
) =
@_
;
$self
->{str} =
$str
;
$self
;
}
sub
str {
shift
->{str}; }
sub
put {
shift
->{str}; }
1;
__END__