summaryrefslogtreecommitdiffstats
path: root/src/Client/XLSReader.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-26 02:09:03 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-26 02:09:03 +0200
commitd88c486ae403bee8f4b16e4bdf9daf19f8915eed (patch)
tree34aea8e1a68c5f125a0af6f5ab6f0ec7fcb5d7ea /src/Client/XLSReader.h
parent8c6ea75e487172e23822b39b6cf58fbc947971e4 (diff)
downloadmad-d88c486ae403bee8f4b16e4bdf9daf19f8915eed.tar
mad-d88c486ae403bee8f4b16e4bdf9daf19f8915eed.zip
Client: Added unfinished XLS import command
Diffstat (limited to 'src/Client/XLSReader.h')
-rw-r--r--src/Client/XLSReader.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/Client/XLSReader.h b/src/Client/XLSReader.h
new file mode 100644
index 0000000..8c7b11a
--- /dev/null
+++ b/src/Client/XLSReader.h
@@ -0,0 +1,57 @@
+/*
+ * XLSReader.h
+ *
+ * Copyright (C) 2009 Matthias Schiffer <matthias@gamezock.de>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MAD_CLIENT_XLSREADER_H_
+#define MAD_CLIENT_XLSREADER_H_
+
+#include "export.h"
+
+#include <Core/Exception.h>
+
+#include <boost/noncopyable.hpp>
+#include <boost/shared_ptr.hpp>
+#include <list>
+#include <libxml/parser.h>
+
+namespace Mad {
+namespace Client {
+
+class XLSSheet;
+
+class MAD_CLIENT_EXPORT XLSReader : private boost::noncopyable {
+ private:
+ friend class XLSSheet;
+
+ boost::shared_ptr<xmlDoc> doc;
+ std::list<boost::shared_ptr<XLSSheet> > sheets;
+
+ static xmlNodePtr findNode(xmlNodePtr parent, const std::string &name);
+
+ public:
+ XLSReader(const std::string &filename) throw (Core::Exception);
+
+ const std::list<boost::shared_ptr<XLSSheet> >& getSheets() const {
+ return sheets;
+ }
+};
+
+}
+}
+
+#endif /* MAD_CLIENT_XLSREADER_H_ */