LibEngsas
excel.h
Go to the documentation of this file.
1 #ifndef EXCEL_H
2 #define EXCEL_H
3 
4 #include <eobject.h>
5 
6 class ExcelWorkbook;
7 
9 
10 class QAxObject;
11 
12 class Excel : public EObject
13 {
14  Q_OBJECT
15  public:
16  Excel(ESpreadsheetProvider *provider, QObject *parent = NULL);
17  ~Excel();
18 
19  ExcelWorkbook *load(QString file);
20  ExcelWorkbook *create(QString file);
21 
22  void closeWorkbooks();
23 
24  private:
25  QAxObject *comExcel, *workbooks;
27 };
28 
29 #endif // EXCEL_H