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/tests/settings.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/tests/settings.cpp')
-rw-r--r-- | src/tests/settings.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tests/settings.cpp b/src/tests/settings.cpp new file mode 100644 index 0000000..0738cb7 --- /dev/null +++ b/src/tests/settings.cpp | |||
@@ -0,0 +1,9 @@ | |||
1 | #include "bu/settings.h" | ||
2 | |||
3 | int main() | ||
4 | { | ||
5 | Bu::Settings s("Xagasoft", "Settings"); | ||
6 | |||
7 | |||
8 | } | ||
9 | |||