diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-08-24 20:11:04 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-08-24 20:11:04 +0000 |
commit | d7d2c0929a5d7871e913451fd542e03ae4561183 (patch) | |
tree | a5ca60568edc265e1c4f657706709db7d27f50bc /src/unstable/settings.cpp | |
parent | da642482dee91921fc16786208aa497d3ee31d94 (diff) | |
download | libbu++-d7d2c0929a5d7871e913451fd542e03ae4561183.tar.gz libbu++-d7d2c0929a5d7871e913451fd542e03ae4561183.tar.bz2 libbu++-d7d2c0929a5d7871e913451fd542e03ae4561183.tar.xz libbu++-d7d2c0929a5d7871e913451fd542e03ae4561183.zip |
Taf isn't really...the best backend for this now, I need some more fixes there
first, so next up we need the windows registry backend.
Diffstat (limited to '')
-rw-r--r-- | src/unstable/settings.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unstable/settings.cpp b/src/unstable/settings.cpp index e993250..ac3975f 100644 --- a/src/unstable/settings.cpp +++ b/src/unstable/settings.cpp | |||
@@ -36,5 +36,12 @@ Bu::Settings::~Settings() | |||
36 | 36 | ||
37 | void Bu::Settings::set( const Bu::UtfString &sKey, const Bu::UtfString &sValue ) | 37 | void Bu::Settings::set( const Bu::UtfString &sKey, const Bu::UtfString &sValue ) |
38 | { | 38 | { |
39 | pDriver->set( sKey, sValue ); | ||
40 | } | ||
41 | |||
42 | Bu::UtfString Bu::Settings::get( const Bu::UtfString &sKey, | ||
43 | const Bu::UtfString &sValue ) | ||
44 | { | ||
45 | return pDriver->get( sKey, sValue ); | ||
39 | } | 46 | } |
40 | 47 | ||