summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2014-11-24 15:51:08 -0700
committerMike Buland <mike@xagasoft.com>2014-11-24 15:51:08 -0700
commit3320e1496b1d099f63dea869f4a1cc19630dc3a9 (patch)
treec56f8262951481376122650e9bc1c49358e304f1 /src/parser.h
parentf2f92156531b49da71067336ef0724f411226644 (diff)
downloadclic-3320e1496b1d099f63dea869f4a1cc19630dc3a9.tar.gz
clic-3320e1496b1d099f63dea869f4a1cc19630dc3a9.tar.bz2
clic-3320e1496b1d099f63dea869f4a1cc19630dc3a9.tar.xz
clic-3320e1496b1d099f63dea869f4a1cc19630dc3a9.zip
Fixed an annoying parsing bug.0.10
Diffstat (limited to '')
-rw-r--r--src/parser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index 2b1a4af..e163212 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -20,6 +20,8 @@ public:
20 virtual ~Parser(); 20 virtual ~Parser();
21 21
22 void parse(); 22 void parse();
23 Number getVariable( const Bu::String &sName );
24 void setVariable( const Bu::String &sName, const Number &rValue );
23 25
24private: 26private:
25 void unwind(); 27 void unwind();