LibEngsas
excelworkbook.h
Go to the documentation of this file.
1 #ifndef EXCELWORKBOOK_H
2 #define EXCELWORKBOOK_H
3 
4 #include <eobject.h>
5 
6 class ExcelSheet;
7 
9 
10 class QAxObject;
11 
12 class ExcelWorkbook : public EObject
13 {
14  Q_OBJECT
15  public:
16  ExcelWorkbook(QAxObject *comWorkbook, ESpreadsheetProvider *provider, QObject *parent = NULL);
17 
19  ExcelSheet* appendSheet(QString name);
20  bool writeData();
21 
22  private:
23  QAxObject *myWorkbook;
26 };
27 
28 #endif // EXCELWORKBOOK_H