diff options
Diffstat (limited to 'project2/if.cpp')
-rw-r--r-- | project2/if.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/project2/if.cpp b/project2/if.cpp index a69fd8d..b1b98a6 100644 --- a/project2/if.cpp +++ b/project2/if.cpp @@ -39,11 +39,15 @@ IfSet::passes() const If::If(const xmlpp::Element * e) : SourceObject(e), - Iterate(e), - RowView(e), + NoOutputExecute(e), + View(e), IfSet(e), localErrorHandling(e->get_attribute_value("errorHandling") == "local") { + LoaderBase loader("http://project2.randomdan.homeip.net", true); + loader.supportedStorers.insert(Storer::into(&subNOEs)); + loader.supportedStorers.insert(Storer::into(&subViews)); + loader.collectAll(e, true, IgnoreUnsupported); } void |