]> git.cworth.org Git - apitrace/blobdiff - trace_parser.hpp
Recognise glFrameTerminatorGREMEDY when retracing.
[apitrace] / trace_parser.hpp
index 20c3a756e2c62c91463220e2506fa5dd800274c4..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<StructSig *> StructMap;