preliminary steps for moving test applications in a separate directory (it does not...
[simple-launcher] / tests / test2.cc
diff --git a/tests/test2.cc b/tests/test2.cc
new file mode 100644 (file)
index 0000000..261b547
--- /dev/null
@@ -0,0 +1,15 @@
+#include <iostream>
+
+#include "gconf-wrapper.h"
+
+int main() {
+  g_type_init();
+
+  GConfKey sla("/apps/simple-launcher");
+
+  GConfBooleanOption transparency(sla, "transparency", false);
+
+  std::cout << "Value: " << transparency.value() << std::endl;
+
+  return 0;
+}