Class::MethodMaker::Constants - Class::MethodMaker::Constants documentation


Class-MethodMaker documentation Contained in the Class-MethodMaker distribution.

Index


Code Index:

NAME

Top

Class::MethodMaker::Constants

SYNOPSIS

Top

DESCRIPTION

Top

CLASS CONSTANTS

Top

EXAMPLES

Top

BUGS

Top

REPORTING BUGS

Top

Email the development mailing list class-mmaker-devel@lists.sourceforge.net

AUTHOR

Top

Martyn J. Pearce

COPYRIGHT

Top

SEE ALSO

Top


Class-MethodMaker documentation Contained in the Class-MethodMaker distribution.
# (X)Emacs mode: -*- cperl -*-

package Class::MethodMaker::Constants;

# ----------------------------------------------------------------------------

# Pragmas -----------------------------

require 5.006;
use strict;
use warnings;

use base qw( Exporter );
our @EXPORT_OK = qw( INTEGER );

# ----------------------------------------------------------------------------

# CLASS METHODS --------------------------------------------------------------

# -------------------------------------
# CLASS CONSTANTS
# -------------------------------------

use constant INTEGER => '+INTEGER'; # Prefix to ensure clients don't just
                                    # assume the string: this value may well
                                    # change in the future

# ----------------------------------------------------------------------------

1; # keep require happy.

__END__