summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-29 13:06:40 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-29 13:06:40 -0700
commit1bc10d1408eb29b0675a030e029155dd046b1dd8 (patch)
tree6d649015bdfa69df9de1cb964906fd396b9db82b /src/scope.h
parent79dce6268850fb1b0d76c15d5399d66bcd286e5f (diff)
downloadstage-1bc10d1408eb29b0675a030e029155dd046b1dd8.tar.gz
stage-1bc10d1408eb29b0675a030e029155dd046b1dd8.tar.bz2
stage-1bc10d1408eb29b0675a030e029155dd046b1dd8.tar.xz
stage-1bc10d1408eb29b0675a030e029155dd046b1dd8.zip
Functions can be called now, at least manually.
A little more work needs to be done before they're being called from code correctly.
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