diff options
Diffstat (limited to 'p2pvr/lib/objectRowState.h')
-rw-r--r-- | p2pvr/lib/objectRowState.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/p2pvr/lib/objectRowState.h b/p2pvr/lib/objectRowState.h deleted file mode 100644 index 9ba69f0..0000000 --- a/p2pvr/lib/objectRowState.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef OBJECT_ROW_STATE_H -#define OBJECT_ROW_STATE_H - -#include <boost/function.hpp> -#include <string> -#include <rowSet.h> - -typedef boost::function<void(const std::string &, bool)> ColumnCreator; -typedef boost::function<void(const ColumnCreator &)> ColumnSpecifier; - -template <typename V> -void BindColumns(RowState &, const V &); - -template <typename V> -void UnbindColumns(RowState &, const V &); - -template <typename V> -void CreateColumns(const ColumnCreator &); - -template <typename T> -class ObjectRowState : public RowState { - public: - ObjectRowState(const ColumnSpecifier & cs = CreateColumns<T>) : - columns(ColumnCreatorHelper(cs)) - { - fields.resize(columns.size()); - } - const Columns & getColumns() const { return columns; } - - private: - static Columns ColumnCreatorHelper(const ColumnSpecifier & cs) - { - int index = 0; - Columns columns; - cs([&columns, &index](const std::string & name, bool) { - columns.insert(new Column(index++, name)); - }); - return columns; - } - - Columns columns; -}; - -#endif - |