diff options
| author | Marius Nita <marius@cs.pdx.edu> | 2002-08-26 15:00:14 +0000 |
|---|---|---|
| committer | Marius Nita <marius@cs.pdx.edu> | 2002-08-26 15:00:14 +0000 |
| commit | a95a6bd8e81a6bcc9db8abbbb3c0c78f087733f4 (patch) | |
| tree | 7380ce892ce084fd237e4db4d22ebd4d65934f55 /util/epist/config.hh | |
| parent | afa215efb64b0e390ced816373a444fafe9c70b0 (diff) | |
Fixed goof in config interface. All the functions are now named getValue(), since they have different signatures.
Diffstat (limited to 'util/epist/config.hh')
| -rw-r--r-- | util/epist/config.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/epist/config.hh b/util/epist/config.hh index 0cb2a1c0..2c295747 100644 --- a/util/epist/config.hh +++ b/util/epist/config.hh @@ -63,9 +63,9 @@ public: Config(); ~Config(); - bool getBoolValue(BoolType, bool &) const; - bool getStringValue(StringType, std::string &) const; - bool getNumberValue(NumberType, int &) const; + bool getValue(BoolType, bool &) const; + bool getValue(StringType, std::string &) const; + bool getValue(NumberType, int &) const; void addOption(const std::string &, const std::string &); }; |
