diff options
Diffstat (limited to 'src/scope.h')
-rw-r--r-- | src/scope.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/scope.h b/src/scope.h index 84797f0..f352ff5 100644 --- a/src/scope.h +++ b/src/scope.h | |||
@@ -3,14 +3,21 @@ | |||
3 | 3 | ||
4 | #include "variable.h" | 4 | #include "variable.h" |
5 | 5 | ||
6 | typedef VariableHash Scope; | ||
7 | /* | ||
8 | |||
6 | class Scope | 9 | class Scope |
7 | { | 10 | { |
8 | public: | 11 | public: |
9 | Scope(); | 12 | Scope(); |
10 | virtual ~Scope(); | 13 | virtual ~Scope(); |
11 | 14 | ||
15 | |||
16 | |||
12 | private: | 17 | private: |
13 | VariableHash hVars; | 18 | VariableHash hVars; |
14 | }; | 19 | }; |
15 | 20 | ||
21 | */ | ||
22 | |||
16 | #endif | 23 | #endif |