diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-04 18:35:23 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-04 18:35:23 (GMT) |
commit | 5417b4fa65098a41299bb2d693d646a5f4d06051 (patch) | |
tree | 16d92e93f7b26470aa9113e9602ffd4b7d378f35 /src/module.h | |
parent | 2a18b857f0dccca7d9f697f7cbcae6759610429c (diff) |
Ported use for Qt's foreach to BOOST_FOREACH
Diffstat (limited to 'src/module.h')
-rw-r--r-- | src/module.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/module.h b/src/module.h index 5262bfc..c28ab34 100644 --- a/src/module.h +++ b/src/module.h @@ -26,11 +26,13 @@ public: std::string dump(const std::string &indent) const; class AbstractNode *evaluate(const Context *ctx) const; + std::vector<AbstractNode*> evaluateChildren(const Context *ctx = NULL) const; }; class IfElseModuleInstantiation : public ModuleInstantiation { public: virtual ~IfElseModuleInstantiation(); + std::vector<AbstractNode*> evaluateElseChildren(const Context *ctx = NULL) const; std::vector<ModuleInstantiation*> else_children; }; |