return strret;
}
+/**
+ * confi_set_root:
+ * @confi: a #Confi object.
+ * @root: the root.
+ *
+ */
+gboolean
+confi_set_root (Confi *confi, const gchar *root)
+{
+ gboolean ret;
+
+ ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
+
+ if (priv->pluggable == NULL)
+ {
+ g_warning ("Not initialized.");
+ ret = FALSE;
+ }
+ else
+ {
+ g_object_set (priv->pluggable, "root", root, NULL);
+ ret = TRUE;
+ }
+
+ return ret;
+}
+
/**
* confi_add_key:
* @confi: a #Confi object.
GNode *confi_get_tree (Confi *confi);
gchar *confi_normalize_root (const gchar *root);
+gboolean confi_set_root (Confi *confi, const gchar *root);
ConfiKey *confi_add_key (Confi *confi,
const gchar *parent,
g_printf ("Value: %s\n", ck->value);
g_printf ("\n");
- /*g_printf ("Setting root \"key2\"\n");
- confi_set_root (confi, "key2");
- g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));*/
+ g_printf ("Setting root \"folder/key2\"\n");
+ confi_set_root (confi, "folder/key2");
+ g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));
+ g_printf ("Value from key \"folder/key1/key1_2\" (expected null) %s\n", confi_path_get_value (confi, "folder/key1/key1_2"));
confi_destroy (confi);