diff options
Diffstat (limited to 'project2/common/presenter.cpp')
-rw-r--r-- | project2/common/presenter.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/project2/common/presenter.cpp b/project2/common/presenter.cpp index a28f00c..b4b7379 100644 --- a/project2/common/presenter.cpp +++ b/project2/common/presenter.cpp @@ -1,6 +1,7 @@ #include <pch.hpp> +#include "scripts.h" +#include "execContext.h" #include "presenter.h" -#include "dataSource.h" #include <factory.impl.h> NameValuePairPresenter::NameValuePairPresenter() @@ -120,5 +121,5 @@ MultiRowSetPresenter::finalizeContent() const { } -INSTANTIATEFACTORY(MultiRowSetPresenter, ScriptNodePtr, ObjectSource, ExecContext *); +INSTANTIATEFACTORY(MultiRowSetPresenter, const ScriptNode *, const ObjectSource &, ExecContext *); |