Export the list header with a new namespace
[babeltrace.git] / formats / ctf / metadata / ctf-scanner.h
index 07b5df7c75ac1d64201ee35587a174a39cf48212..4de343027b522e788fbda44365f0082674d5114f 100644 (file)
@@ -9,12 +9,18 @@
 typedef void* yyscan_t;
 #endif
 
+struct ctf_scanner_scope;
+struct ctf_scanner_scope {
+       struct ctf_scanner_scope *parent;
+       GHashTable *types;
+};
+
 struct ctf_scanner {
        yyscan_t scanner;
        struct ctf_ast *ast;
-       struct scope root_scope;
-       struct scope *cs;
-       struct cds_list_head allocated_strings;
+       struct ctf_scanner_scope root_scope;
+       struct ctf_scanner_scope *cs;
+       struct bt_list_head allocated_strings;
 };
 
 struct ctf_scanner *ctf_scanner_alloc(FILE *input);
This page took 0.024755 seconds and 4 git commands to generate.