diff options
author | Andreas Bregas <ab@openoffice.org> | 2001-02-26 08:54:48 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2001-02-26 08:54:48 +0000 |
commit | 3250cfc03a32f283118d0ab2dbc77303c6052bd8 (patch) | |
tree | 166763690fc13a859895f922e51ed4ec36b9e46b /xmlscript/inc | |
parent | 82453422e57e06e19e1e25b7932bff33a62335e1 (diff) |
Functions to import/export from/to Sequence< byte >
Diffstat (limited to 'xmlscript/inc')
-rw-r--r-- | xmlscript/inc/xmlscript/xmldlg_imexp.hxx | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/xmlscript/inc/xmlscript/xmldlg_imexp.hxx b/xmlscript/inc/xmlscript/xmldlg_imexp.hxx index 5feeb58e3494..6f8006f30f99 100644 --- a/xmlscript/inc/xmlscript/xmldlg_imexp.hxx +++ b/xmlscript/inc/xmlscript/xmldlg_imexp.hxx @@ -2,9 +2,9 @@ * * $RCSfile: xmldlg_imexp.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: dbo $ $Date: 2001-02-21 20:49:25 $ + * last change: $Author: ab $ $Date: 2001-02-26 09:51:50 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -61,9 +61,15 @@ #ifndef _XMLSCRIPT_XMLDLG_IMEXP_HXX_ #define _XMLSCRIPT_XMLDLG_IMEXP_HXX_ +#ifndef _COM_SUN_STAR_CONTAINER_XNAMECONTAINER_HXX_ #include <com/sun/star/container/XNameContainer.hpp> +#endif +#ifndef _COM_SUN_STAR_XML_SAX_XEXTENDEDDOCUMENTHANDLER_HXX_ #include <com/sun/star/xml/sax/XExtendedDocumentHandler.hpp> - +#endif +#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_ +#include <com/sun/star/uno/Sequence.hxx> +#endif namespace xmlscript { @@ -87,4 +93,17 @@ SAL_CALL importDialogModel( }; +//================================================================================================== +SAL_DLLEXPORT void SAL_CALL exportDialogModelToByteSequence( + ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > const & xDialogModel, + ::com::sun::star::uno::Sequence< sal_Int8 >& aDestSequence ) + throw (::com::sun::star::uno::Exception); + +//================================================================================================== +SAL_DLLEXPORT void SAL_CALL importDialogModelFromByteSequence( + ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > const & xDialogModel, + ::com::sun::star::uno::Sequence< sal_Int8 > const& aSourceSequence ) + throw (::com::sun::star::uno::Exception); + #endif + |