A little better comments.
[p5sagit/p5-mst-13.2.git] / t / lib / Math / BigFloat / Subclass.pm
CommitLineData
ee15d750 1#!/usr/bin/perl -w
2
dccbb853 3package Math::BigFloat::Subclass;
ee15d750 4
5require 5.005_02;
6use strict;
7
8use Exporter;
9use Math::BigFloat(1.23);
dccbb853 10use vars qw($VERSION @ISA $PACKAGE
ee15d750 11 $accuracy $precision $round_mode $div_scale);
12
13@ISA = qw(Exporter Math::BigFloat);
14
ee15d750 15$VERSION = 0.01;
16
17# Globals
18$accuracy = $precision = undef;
19$round_mode = 'even';
20$div_scale = 40;
21
22sub new
23{
24 my $proto = shift;
25 my $class = ref($proto) || $proto;
26
394e6ffb 27 my $value = shift;
28 # Set to 0 if not provided, but don't use || (this would trigger for
29 # a passed objects to see if they are zero)
30 $value = 0 if !defined $value;
ee15d750 31
32 # Store the floating point value
33 my $self = bless Math::BigFloat->new($value), $class;
34 $self->{'_custom'} = 1; # make sure this never goes away
35 return $self;
36}
37
381;