configuration.h   configuration.h 
skipping to change at line 85 skipping to change at line 85
std::vector<string> FindVector(const char *Name) const; std::vector<string> FindVector(const char *Name) const;
std::vector<string> FindVector(string const &Name) const { return FindVe ctor(Name.c_str()); }; std::vector<string> FindVector(string const &Name) const { return FindVe ctor(Name.c_str()); };
int FindI(const char *Name,int const &Default = 0) const; int FindI(const char *Name,int const &Default = 0) const;
int FindI(string const &Name,int const &Default = 0) const {return FindI (Name.c_str(),Default);}; int FindI(string const &Name,int const &Default = 0) const {return FindI (Name.c_str(),Default);};
bool FindB(const char *Name,bool const &Default = false) const; bool FindB(const char *Name,bool const &Default = false) const;
bool FindB(string const &Name,bool const &Default = false) const {return FindB(Name.c_str(),Default);}; bool FindB(string const &Name,bool const &Default = false) const {return FindB(Name.c_str(),Default);};
string FindAny(const char *Name,const char *Default = 0) const; string FindAny(const char *Name,const char *Default = 0) const;
inline void Set(const string &Name,const string &Value) {Set(Name.c_str( ),Value);}; inline void Set(const string &Name,const string &Value) {Set(Name.c_str( ),Value);};
void CndSet(const char *Name,const string &Value); void CndSet(const char *Name,const string &Value);
void CndSet(const char *Name,const int Value);
void Set(const char *Name,const string &Value); void Set(const char *Name,const string &Value);
void Set(const char *Name,const int &Value); void Set(const char *Name,const int &Value);
inline bool Exists(const string &Name) const {return Exists(Name.c_str() );}; inline bool Exists(const string &Name) const {return Exists(Name.c_str() );};
bool Exists(const char *Name) const; bool Exists(const char *Name) const;
bool ExistsAny(const char *Name) const; bool ExistsAny(const char *Name) const;
// clear a whole tree // clear a whole tree
void Clear(const string &Name); void Clear(const string &Name);
 End of changes. 1 change blocks. 
0 lines changed or deleted 1 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/