diff options
author | Alexander Baldeck <alexander@archlinux.org> | 2004-12-26 11:39:53 +0000 |
---|---|---|
committer | Alexander Baldeck <alexander@archlinux.org> | 2004-12-26 11:39:53 +0000 |
commit | 72a1107e594b1745026241d323f9fc44813bd91d (patch) | |
tree | 3c9760598495c373582659a18df322ab01a94778 /src/configuration.h | |
parent | 0c9ef7743aab89249f8fafdb44e362178fba988f (diff) | |
download | mana-client-72a1107e594b1745026241d323f9fc44813bd91d.tar.gz mana-client-72a1107e594b1745026241d323f9fc44813bd91d.tar.bz2 mana-client-72a1107e594b1745026241d323f9fc44813bd91d.tar.xz mana-client-72a1107e594b1745026241d323f9fc44813bd91d.zip |
- replaced default ini creation routine with new system
- testing version of write support for config system
Diffstat (limited to 'src/configuration.h')
-rw-r--r-- | src/configuration.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/configuration.h b/src/configuration.h index e3e5b9aa..2bd8f83b 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -39,9 +39,11 @@ class Configuration { public: void Init(std::string); - bool Write(); + bool Write(std::string); + + void setValue(std::string, std::string); + void setValue(std::string, float); - bool setValue(std::string, std::string); std::string getValue(std::string, std::string); float getValue(std::string, float); private: |