Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv32503/Include
Modified Files:
SimpleConfig.h
Log Message:
Index: SimpleConfig.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/SimpleConfig.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** SimpleConfig.h 23 Jul 2003 01:28:58 -0000 1.9
--- SimpleConfig.h 23 Jul 2003 02:24:44 -0000 1.10
***************
*** 222,241 ****
* Returns true if a particular section-key pair is defined.
*/
! bool hasKey(const char* section, const char* key) const;
/**
* Remove a key-value pair.
*/
! void delKey(const char* section, const char* key);
/**
* Returns true if a particular section exists.
*/
! bool hasSection(const char* section) const;
/**
* Remove a section and all keys it contains.
*/
! void delSection(const char* section);
/**
--- 222,241 ----
* Returns true if a particular section-key pair is defined.
*/
! bool hasKey(std::string const §ion, std::string const &key) const;
/**
* Remove a key-value pair.
*/
! void delKey(std::string const §ion, std::string const &key);
/**
* Returns true if a particular section exists.
*/
! bool hasSection(std::string const §ion) const;
/**
* Remove a section and all keys it contains.
*/
! void delSection(std::string const §ion);
/**
|