/* * XLSSheet.h * * Copyright (C) 2009 Matthias Schiffer * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by the * Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along * with this program. If not, see . */ #ifndef MAD_CLIENT_XLSSHEET_H_ #define MAD_CLIENT_XLSSHEET_H_ #include "export.h" #include #include #include #include #include #include namespace Mad { namespace Client { class XLSReader; class MAD_CLIENT_EXPORT XLSSheet : private boost::noncopyable { public: typedef boost::shared_ptr > RowType; private: friend class XLSReader; boost::shared_ptr doc; xmlNodePtr node; Core::String title; size_t colCount; std::vector rows; std::vector colNames; bool firstRowColNames; XLSSheet(boost::shared_ptr doc0, xmlNodePtr node0); Core::String getSheetLevelField(const Core::String &name) const; void readRows(); public: void useFirstRowAsColumnNames(bool useFirstRowColNames) { if(firstRowColNames == useFirstRowColNames) return; firstRowColNames = useFirstRowColNames; readRows(); } const Core::String& getTitle() const { return title; } size_t getColumnCount() const { return colCount; } const Core::String& getColumnName(unsigned col) const { return colNames[col]; } void setColumnName(unsigned col, const Core::String &name) { colNames[col] = name; } const std::vector& getRows() const { return rows; } }; } } #endif /* MAD_CLIENT_XLSSHEET_H_ */