]> git.saurik.com Git - cycript.git/blobdiff - Context.hpp
Milestone #1: YUI has been destroyed, with room to spare.
[cycript.git] / Context.hpp
index dfa0b62a24cd8a20305530400bb1f1bea53a49c1..994f3b6a951c19598466d6e9a4c8a9c474eb978d 100644 (file)
 
 #include "Options.hpp"
 
+class CYProgram;
 class CYScope;
 
 struct CYContext {
     apr_pool_t *pool_;
     CYOptions &options_;
     CYScope *scope_;
+    CYProgram *program_;
 
     CYContext(apr_pool_t *pool, CYOptions &options) :
         pool_(pool),
         options_(options),
-        scope_(NULL)
+        scope_(NULL),
+        program_(NULL)
     {
     }