Math-BigInt v1.49 released
[p5sagit/p5-mst-13.2.git] / t / lib / Math / BigFloat / Subclass.pm
1 #!/usr/bin/perl -w
2
3 package Math::BigFloat::Subclass;
4
5 require 5.005_02;
6 use strict;
7
8 use Exporter;
9 use Math::BigFloat(1.27);
10 use vars qw($VERSION @ISA $PACKAGE
11             $accuracy $precision $round_mode $div_scale);
12
13 @ISA = qw(Exporter Math::BigFloat);
14
15 $VERSION = 0.02;
16
17 # Globals
18 $accuracy = $precision = undef;
19 $round_mode = 'even';
20 $div_scale = 40;
21
22 sub new
23 {
24         my $proto  = shift;
25         my $class  = ref($proto) || $proto;
26
27         my $value       = shift;
28         my $a = $accuracy; $a = $_[0] if defined $_[0];
29         my $p = $precision; $p = $_[1] if defined $_[1];
30         # Store the floating point value
31         my $self = Math::BigFloat->new($value,$a,$p,$round_mode);
32         bless $self, $class;
33         $self->{'_custom'} = 1; # make sure this never goes away
34         return $self;
35 }
36
37 1;