]> git.cworth.org Git - apitrace/blobdiff - trace_parser.hpp
Recognise glFrameTerminatorGREMEDY when retracing.
[apitrace] / trace_parser.hpp
index fe360230f6f498906f1b90a021446908380ca590..4fff9ad1157129e0da8458f8cca87e68687197ec 100644 (file)
 
 namespace Trace {
 
+class File;
 
 class Parser
 {
 protected:
-    void *file;
+    File *file;
 
     typedef std::list<Call *> CallList;
     CallList calls;
 
-    typedef std::vector<Call::Signature *> FunctionMap;
+    typedef std::vector<FunctionSig *> FunctionMap;
     FunctionMap functions;
 
-    typedef std::vector<Struct::Signature *> StructMap;
+    typedef std::vector<StructSig *> StructMap;
     StructMap structs;
 
     typedef std::vector<EnumSig *> EnumMap;