#ifndef SCOPE_H #define SCOPE_H #include "variable.h" class Scope { public: Scope(); virtual ~Scope(); private: VariableHash hVars; }; #endif