summaryrefslogtreecommitdiffstats
path: root/sc/inc/xmlwrap.hxx
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2001-02-06 13:49:07 +0000
committerSascha Ballach <sab@openoffice.org>2001-02-06 13:49:07 +0000
commitc030ba7683fa71a02e3cc4946364090b4e37eaf0 (patch)
tree41c3893720752a08c0abfb830dbb9b940f4be6b6 /sc/inc/xmlwrap.hxx
parentSID_DEL_COLS, SID_DEL_ROWS: StateMethod GetBlockState instead of GetState (ne... (diff)
downloadcore-c030ba7683fa71a02e3cc4946364090b4e37eaf0.tar.gz
core-c030ba7683fa71a02e3cc4946364090b4e37eaf0.zip
get the XStatusIndicator in a own method
Diffstat (limited to 'sc/inc/xmlwrap.hxx')
-rw-r--r--sc/inc/xmlwrap.hxx13
1 files changed, 11 insertions, 2 deletions
diff --git a/sc/inc/xmlwrap.hxx b/sc/inc/xmlwrap.hxx
index e044e18bc3d2..724988f8a619 100644
--- a/sc/inc/xmlwrap.hxx
+++ b/sc/inc/xmlwrap.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlwrap.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:44:51 $
+ * last change: $Author: sab $ $Date: 2001-02-06 14:49:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -65,11 +65,20 @@
class ScDocument;
class SfxMedium;
+namespace com { namespace sun { namespace star {
+ namespace uno { template<class X> class Reference; }
+ namespace frame { class XModel; }
+ namespace task { class XStatusIndicator; }
+} } }
+
class ScXMLImportWrapper
{
ScDocument& rDoc;
SfxMedium& rMedium;
+ com::sun::star::uno::Reference< com::sun::star::task::XStatusIndicator> GetStatusIndicator(
+ com::sun::star::uno::Reference< com::sun::star::frame::XModel >& rModel);
+
public:
ScXMLImportWrapper(ScDocument& rD, SfxMedium& rM);
BOOL Import();