diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-08-24 18:15:11 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-08-24 18:15:11 +0000 |
commit | da642482dee91921fc16786208aa497d3ee31d94 (patch) | |
tree | bae598fca2bb2b55661bc1c854b43a1393aced23 /src/unstable/settingsdriver.cpp | |
parent | f5ac2c1ba333ce6aa6d385d9a63b658caaa46503 (diff) | |
download | libbu++-da642482dee91921fc16786208aa497d3ee31d94.tar.gz libbu++-da642482dee91921fc16786208aa497d3ee31d94.tar.bz2 libbu++-da642482dee91921fc16786208aa497d3ee31d94.tar.xz libbu++-da642482dee91921fc16786208aa497d3ee31d94.zip |
Adding new Bu::Settings system, which works more or less like QSettings from Qt,
only...without qt.
It's the first real system in libbu++ that is going to be all unicode, which
is exciting, but I'm having to actually finish the Bu::UtfString class while I
work on it. Also exciting.
Diffstat (limited to 'src/unstable/settingsdriver.cpp')
-rw-r--r-- | src/unstable/settingsdriver.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/unstable/settingsdriver.cpp b/src/unstable/settingsdriver.cpp new file mode 100644 index 0000000..92cac77 --- /dev/null +++ b/src/unstable/settingsdriver.cpp | |||
@@ -0,0 +1,10 @@ | |||
1 | #include "bu/settingsdriver.h" | ||
2 | |||
3 | Bu::SettingsDriver::SettingsDriver() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Bu::SettingsDriver::~SettingsDriver() | ||
8 | { | ||
9 | } | ||
10 | |||