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