summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/impex.hxx
diff options
context:
space:
mode:
authorjp <jp@openoffice.org>2001-03-08 20:00:07 +0000
committerjp <jp@openoffice.org>2001-03-08 20:00:07 +0000
commit8f5264e0f993506870c321b798763985cd74c79e (patch)
tree6fab8702dacc481c352a94804daaf1c2ae9ba628 /sc/source/ui/inc/impex.hxx
parentfcb6f2863b3b7369463bf3a5ab1b1c6e2b45bacd (diff)
change: old data transfer API to the new
Diffstat (limited to 'sc/source/ui/inc/impex.hxx')
-rw-r--r--sc/source/ui/inc/impex.hxx15
1 files changed, 10 insertions, 5 deletions
diff --git a/sc/source/ui/inc/impex.hxx b/sc/source/ui/inc/impex.hxx
index d56805597..38db978c1 100644
--- a/sc/source/ui/inc/impex.hxx
+++ b/sc/source/ui/inc/impex.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: impex.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:44:59 $
+ * last change: $Author: jp $ $Date: 2001-03-08 20:50:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -75,9 +75,9 @@ class SvDataTypeList;
class ScDocShell;
class ScDocument;
class SvStream;
-class SvData;
class SfxMedium;
class ScAsciiOptions;
+class SvData;
class ScImportExport
{
@@ -161,8 +161,13 @@ public:
BOOL ImportStream( SvStream&, ULONG=FORMAT_STRING );
BOOL ExportStream( SvStream&, ULONG=FORMAT_STRING );
- BOOL ImportData( SvData& );
- BOOL ExportData( SvData& );
+ BOOL ImportData( const String& rMimeType,
+ const ::com::sun::star::uno::Any & rValue );
+ BOOL ExportData( const String& rMimeType,
+ ::com::sun::star::uno::Any & rValue );
+
+ BOOL ImportData( SvData& rData );
+ BOOL ExportData( SvData& rData );
BOOL IsOverflow() const { return bOverflow; } // nach dem Importieren
};