X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Fmetadata%2Fctf-scanner.h;fp=formats%2Fctf%2Fmetadata%2Fctf-scanner.h;h=0000000000000000000000000000000000000000;hp=51484a1d8252bac74bc94190b04f3f6c63a8c4b5;hb=dc3fffef7b84cc4af1a7c99828fd57a106cd2257;hpb=f3985ab106d89d8e764c1a8dd0c8bda09b755d10 diff --git a/formats/ctf/metadata/ctf-scanner.h b/formats/ctf/metadata/ctf-scanner.h deleted file mode 100644 index 51484a1d..00000000 --- a/formats/ctf/metadata/ctf-scanner.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef _CTF_SCANNER_H -#define _CTF_SCANNER_H - -/* - * ctf-scanner.h - * - * Copyright 2011-2012 - Mathieu Desnoyers - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - */ - -#include -#include "ctf-ast.h" - -#ifndef YY_TYPEDEF_YY_SCANNER_T -#define YY_TYPEDEF_YY_SCANNER_T -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 ctf_scanner_scope root_scope; - struct ctf_scanner_scope *cs; - struct objstack *objstack; -}; - -struct ctf_scanner *ctf_scanner_alloc(void); -void ctf_scanner_free(struct ctf_scanner *scanner); -int ctf_scanner_append_ast(struct ctf_scanner *scanner, FILE *input); - -static inline -struct ctf_ast *ctf_scanner_get_ast(struct ctf_scanner *scanner) -{ - return scanner->ast; -} - -BT_HIDDEN -int is_type(struct ctf_scanner *scanner, const char *id); - -#endif /* _CTF_SCANNER_H */