*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / configuration_manager.cpp
index 3194ec3eec3e029740acffe8ee5b1cc8d9ad4e9f..ea95bf81961ae056bcc18114b9a5d8a53e770dcd 100644 (file)
@@ -1,3 +1,20 @@
+/******************************************************************************
+ * 
+ * LDC2 source code
+ *
+ * $Date: 2007/03/26 04:05:37 $
+ * $Author: hachti $
+ *
+ * $Log: configuration_manager.cpp,v $
+ * Revision 2.1  2007/03/26 04:05:37  hachti
+ * *** empty log message ***
+ *
+ * Revision 2.0  2007-03-26 01:00:38  hachti
+ * *** empty log message ***
+ *
+ *
+ ******************************************************************************/
 #include "configuration_manager.hh"
 #include <stdio.h>
 #include <stdlib.h>
@@ -25,9 +42,14 @@ configuration_manager::configuration_manager(string  name){
  *                 output_file in --output_file=
  *\param description A detailed description of the value.
  *\param status Pointer to an integer. Will be set to 1 if arg found.
- *\target Pointer to string to put the value in. 
- *\placeholder A placeholder for the documentation. 
+ *\param target Pointer to string to put the value in. 
+ *\param placeholder A placeholder for the documentation. 
  *             For example <filename> in -f<filename>
+ *\param allow_cmdline Specifies if this value may be specified on the
+ *                     command line.
+ *\param allow_conffile Specifies if this value may be specified in a
+ *                      configuration file.
+ *
  */
 void configuration_manager::add_option_value (const string & shortname, 
                                              const string & longname,
@@ -115,7 +137,7 @@ void configuration_manager::add_argument(const string & description,
 
 
 /*!
- *\Read in the args passed to main().
+ *\brief Read in the args passed to main().
  *\returns empty vector on success or the error messages to be output.
  */
 vector<string> configuration_manager::read_args(int argc, char ** args){