diff options
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 | ||