|
NAMEConfig::Objective::DataType - base class for Config::Objective data types SYNOPSIS use Config::Objective;
use Config::Objective::DataType;
my $conf = Config::Objective->new('filename', {
'objname' => Config::Objective::DataType->new(
'attr1' => 0,
'attr2' => "string",
...
)
});
DESCRIPTIONThe Config::Objective::DataType module provides a class that encapsulates a value in an object so that it can be used with Config::Objective. Its methods can be used to manipulate the encapsulated value from the config file. The Config::Objective::DataType class is not intended to be used to directly instantiate configuration objects, but it does support the following methods for use in subclasses:
AUTHORMark D. Roth <roth@uiuc.edu> SEE ALSOperl Config::Objective
|