// SqlRow.h #ifndef dset__SqlRow_H #define dset__SqlRow_H // Hold the description of a row in a table- a collection of name-value // pairs. Both names and values are strings. #include #include namespace dset { class SqlRow : public std::map { }; } // end namespace dset // Output stream std::ostream& operator<<(std::ostream& lhs, const dset::SqlRow& rhs); #endif