summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/tablecolumnsbuffer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/tablecolumnsbuffer.hxx')
-rw-r--r--sc/source/filter/inc/tablecolumnsbuffer.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/filter/inc/tablecolumnsbuffer.hxx b/sc/source/filter/inc/tablecolumnsbuffer.hxx
index e1e340cbeb03..f54c2eb5533e 100644
--- a/sc/source/filter/inc/tablecolumnsbuffer.hxx
+++ b/sc/source/filter/inc/tablecolumnsbuffer.hxx
@@ -20,6 +20,7 @@
#pragma once
#include <oox/helper/refvector.hxx>
+#include <dbdata.hxx>
#include "workbookhelper.hxx"
namespace oox { class AttributeList; }
@@ -41,11 +42,14 @@ public:
void importTableColumn( SequenceInputStream& rStrm );
/** Gets the name of this column. */
const OUString& getName() const;
+ /** Gets the attributes of this column. */
+ const TableColumnAttributes& getColumnAttributes() const;
private:
OUString maName;
sal_Int32 mnId;
sal_Int32 mnDataDxfId;
+ TableColumnAttributes maColumnAttributes;
};
class TableColumns : public WorkbookHelper