summaryrefslogtreecommitdiff
path: root/util/epist/config.hh
diff options
context:
space:
mode:
authorMarius Nita <marius@cs.pdx.edu>2002-08-26 15:00:14 +0000
committerMarius Nita <marius@cs.pdx.edu>2002-08-26 15:00:14 +0000
commita95a6bd8e81a6bcc9db8abbbb3c0c78f087733f4 (patch)
tree7380ce892ce084fd237e4db4d22ebd4d65934f55 /util/epist/config.hh
parentafa215efb64b0e390ced816373a444fafe9c70b0 (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.hh6
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 &);
};