summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/scope.h')
-rw-r--r--src/scope.h7
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
6typedef VariableHash Scope;
7/*
8
6class Scope 9class Scope
7{ 10{
8public: 11public:
9 Scope(); 12 Scope();
10 virtual ~Scope(); 13 virtual ~Scope();
11 14
15
16
12private: 17private:
13 VariableHash hVars; 18 VariableHash hVars;
14}; 19};
15 20
21*/
22
16#endif 23#endif