Google
Web alhem.net
Main Page | Alphabetical List | Class List | File List | Class Members | File Members

config.h File Reference

#include <map>
#include <string>

Include dependency graph for config.h:

Include dependency graph

This graph shows which files directly or indirectly include this file:

Included by dependency graph

Go to the source code of this file.

Typedefs

typedef std::map< std::string,
std::string > 
config_m

Functions

void parse_config (int argc, char *argv[], const std::string &filename)
void write_config ()

Variables

config_m config


Typedef Documentation

typedef std::map<std::string,std::string> config_m
 

File ......... config.h Published .... 2004-04-18 Author ....... grymse@alhem.net

Definition at line 29 of file config.h.


Function Documentation

void parse_config int  argc,
char *  argv[],
const std::string &  filename
 

Definition at line 81 of file config.cpp.

References config, read_config(), and write_config().

Referenced by main().

00082 {
00083         read_config( filename );
00084         for (int i = 1; i < argc; i++)
00085                 if (argv[i][0] == '-' && i < argc - 1)
00086                 {
00087                         config[argv[i] + 1] = argv[i + 1];
00088                         i++;
00089                 }
00090         write_config(); // filename );
00091 }

void write_config  ) 
 

Definition at line 64 of file config.cpp.

References config, and config_filename.

Referenced by parse_config(), and MyHandler::reg_host().

00065 {
00066         FILE *fil = fopen(config_filename.c_str(),"wt");
00067         if (fil)
00068         {
00069                 for (config_m::iterator it = config.begin(); it != config.end(); it++)
00070                 {
00071                         std::string key = (*it).first;
00072                         std::string value = (*it).second;
00073                         if (key[0] != '.')
00074                                 fprintf(fil,"%s %s\n",key.c_str(),value.c_str());
00075                 }
00076                 fclose(fil);
00077         }
00078 }


Variable Documentation

config_m config
 

Definition at line 31 of file config.h.

Referenced by main(), MyTcpSocket::OnLine(), parse_config(), read_config(), MyHandler::reg_host(), and write_config().


Generated on Tue Oct 3 23:47:05 2006 for The Minder by doxygen 1.3.6