'standardizing' awful macro usage
[aqualang.git] / src / private.h
blob1f80db665501e6b2c567f903c4157a594d17fa11
2 #include <map>
3 #include "jtc.h"
5 #define ID_HANDLE Interpreter::Value(Interpreter::Value::NumberType('h'))
7 //! todo: create a wrapper method ...
8 namespace Stdlib
10 void fn_print(Interpreter&, std::vector<Interpreter::Value> &stack);
11 void fn_println(Interpreter&, std::vector<Interpreter::Value> &stack);
12 void fn_readline(Interpreter&, std::vector<Interpreter::Value> &stack);
13 void fn_children(Interpreter&, std::vector<Interpreter::Value> &stack);
14 void fn_tokens(Interpreter&, std::vector<Interpreter::Value> &stack);
15 void fn_expand_node(Interpreter&, std::vector<Interpreter::Value> &stack);
16 void fn_tostring(Interpreter&, std::vector<Interpreter::Value> &stack);
17 void fn_tonumber(Interpreter&, std::vector<Interpreter::Value> &stack);