Config Maker 0.6.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Config Maker 0.6.2 (Default branch)
# 1  
Old 07-03-2008
Config Maker 0.6.2 (Default branch)

Config Maker is a tool to automatically create C++ classes that parse configuration files. Only a few lines of text that describe the possible entries in the configuration file are needed, and the complete class will be generated ready for use. License: GNU General Public License (GPL) Changes:
It is no longer necessary to set CFMINC_DIR. Instead, the .inc files can be placed in /etc/cfmake .Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
ExtUtils::Config(3)					User Contributed Perl Documentation				       ExtUtils::Config(3)

NAME
ExtUtils::Config - A wrapper for perl's configuration VERSION
version 0.007 SYNOPSIS
my $config = ExtUtils::Config->new(); $config->set('installsitelib', "$ENV{HOME}/lib"); DESCRIPTION
ExtUtils::Config is an abstraction around the %Config hash. METHODS
new(\%config) Create a new ExtUtils::Config object. The values in "\%config" are used to initialize the object. get($key) Get the value of $key. If not overriden it will return the value in %Config. exists($key) Tests for the existence of $key. set($key, $value) Set/override the value of $key to $value. clear($key) Reset the value of $key to its original value. values_set() Get a hashref of all overridden values. all_config() Get a hashref of the complete configuration, including overrides. clone() Clone the current configuration object. serialize() This method serializes the object to some kind of string. AUTHORS
o Ken Williams <kwilliams@cpan.org> o Leon Timmermans <leont@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2006 by Ken Williams, Leon Timmermans. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.18.2 2012-10-17 ExtUtils::Config(3)