#ifndef MWCOMPILER_CONTEXT_H_INCLUDED #define MWCOMPILER_CONTEXT_H_INCLUDED #include namespace SACompiler { class Context : public Compiler::Context { public: virtual bool canDeclareLocals() const; ///< Is the compiler allowed to declare local variables? }; } #endif