diff options
author | randomdan <randomdan@localhost> | 2012-03-15 21:22:49 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2012-03-15 21:22:49 +0000 |
commit | 8de840e829bd5e08fbc0f52608377fc3eb67382e (patch) | |
tree | c6fab79987a89a72eb73b62ab9df35907c07607f /project2/common/rowView.h | |
parent | Strip clutter from CGI stages (diff) | |
download | project2-8de840e829bd5e08fbc0f52608377fc3eb67382e.tar.bz2 project2-8de840e829bd5e08fbc0f52608377fc3eb67382e.tar.xz project2-8de840e829bd5e08fbc0f52608377fc3eb67382e.zip |
Create 404s when row sets optionally don't return rows
Diffstat (limited to 'project2/common/rowView.h')
-rw-r--r-- | project2/common/rowView.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/project2/common/rowView.h b/project2/common/rowView.h index 40ec8a9..250d54e 100644 --- a/project2/common/rowView.h +++ b/project2/common/rowView.h @@ -18,6 +18,7 @@ class RowView : public View, public RowProcessor { const Variable rootName; const Variable recordName; + const Variable required; protected: typedef std::map<Glib::ustring, Variable> Columns; @@ -31,6 +32,8 @@ class RowView : public View, public RowProcessor { typedef ANONSTORAGEOF(SetAggregate) SetAggregates; SetAggregates setAggregates; mutable const MultiRowSetPresenter * presenter; + + mutable bool rowsFound; }; #endif |