aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/settings.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-08-24 20:11:04 +0000
committerMike Buland <eichlan@xagasoft.com>2012-08-24 20:11:04 +0000
commitd7d2c0929a5d7871e913451fd542e03ae4561183 (patch)
treea5ca60568edc265e1c4f657706709db7d27f50bc /src/unstable/settings.cpp
parentda642482dee91921fc16786208aa497d3ee31d94 (diff)
downloadlibbu++-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 'src/unstable/settings.cpp')
-rw-r--r--src/unstable/settings.cpp7
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
37void Bu::Settings::set( const Bu::UtfString &sKey, const Bu::UtfString &sValue ) 37void Bu::Settings::set( const Bu::UtfString &sKey, const Bu::UtfString &sValue )
38{ 38{
39 pDriver->set( sKey, sValue );
40}
41
42Bu::UtfString Bu::Settings::get( const Bu::UtfString &sKey,
43 const Bu::UtfString &sValue )
44{
45 return pDriver->get( sKey, sValue );
39} 46}
40 47