Config: utility functions for direct configurations element manipulations
[lttng-tools.git] / src / common / config / config-internal.h
index ff3e6293ec485a4485701810f028445794100375..f6de9005f274976d16241c0097cfc0366be0eba1 100644 (file)
  */
 
 #include <libxml/xmlwriter.h>
+#include <libxml/tree.h>
 #include <stdio.h>
 
 struct config_writer {
        xmlTextWriterPtr writer;
 };
+
+struct config_document {
+       xmlDocPtr document;
+};
+
+struct config_element {
+       xmlNodePtr element;
+};
+
+
+
This page took 0.025856 seconds and 5 git commands to generate.