diff options
author | randomdan <randomdan@localhost> | 2011-11-28 15:24:58 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-11-28 15:24:58 +0000 |
commit | b5d014dbc5466b7899c24fae9bdb449d44e67d22 (patch) | |
tree | 8e40b893938b0c1fb0c3f95716fdc262d7c20d5b /project2/common/rowView.h | |
parent | Tweak the JS map function used to find expired sessions, even if I can't expl... (diff) | |
download | project2-b5d014dbc5466b7899c24fae9bdb449d44e67d22.tar.bz2 project2-b5d014dbc5466b7899c24fae9bdb449d44e67d22.tar.xz project2-b5d014dbc5466b7899c24fae9bdb449d44e67d22.zip |
Groundwork for common presenter layer
Diffstat (limited to 'project2/common/rowView.h')
-rw-r--r-- | project2/common/rowView.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/common/rowView.h b/project2/common/rowView.h index 2bab953..558284c 100644 --- a/project2/common/rowView.h +++ b/project2/common/rowView.h @@ -13,7 +13,7 @@ class RowView : public View, public RowProcessor { virtual ~RowView(); void loadComplete(const CommonObjects *); - void execute(const Presenter *) const; + void execute(const MultiRowSetPresenter *) const; void rowReady(const RowState *) const; const Variable rootName; @@ -26,7 +26,7 @@ class RowView : public View, public RowProcessor { void executeChildren() const; typedef ANONSTORAGEOF(View) SubViews; SubViews subViews; - mutable const Presenter * presenter; + mutable const MultiRowSetPresenter * presenter; }; #endif |