Home | Libraries | People | FAQ | More |
boost::row
// In header: <boost/document/row.hpp> class row { public: // types typedef row_iterator iterator; // construct/copy/destruct row(std::shared_ptr< sheet_interface >, std::size_t); // public member functions boost::cell get_cell(std::size_t); boost::cell operator[](std::size_t); std::size_t get_row_index() const; row_iterator begin(); row_iterator end(); const_row_iterator cbegin(); const_row_iterator cend(); };