X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/029bc65b46de676c6733fff684000c7363eda512..14ec9e00ac4903521e92002604eb56ed7cde036d:/Context.hpp diff --git a/Context.hpp b/Context.hpp index dfa0b62..994f3b6 100644 --- a/Context.hpp +++ b/Context.hpp @@ -42,17 +42,20 @@ #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) { }