summaryrefslogtreecommitdiff
path: root/package/source/manifest/ManifestImport.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'package/source/manifest/ManifestImport.hxx')
-rw-r--r--package/source/manifest/ManifestImport.hxx15
1 files changed, 13 insertions, 2 deletions
diff --git a/package/source/manifest/ManifestImport.hxx b/package/source/manifest/ManifestImport.hxx
index 91bc91647fdf..51968e482838 100644
--- a/package/source/manifest/ManifestImport.hxx
+++ b/package/source/manifest/ManifestImport.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ManifestImport.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mtg $ $Date: 2001-04-19 14:09:35 $
+ * last change: $Author: mtg $ $Date: 2001-04-27 14:56:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -75,10 +75,21 @@
#include <com/sun/star/beans/PropertyValue.hpp>
#endif
#include <vector>
+#include <stack>
+enum ElementNames
+{
+ e_Manifest,
+ e_FileEntry,
+ e_EncryptionData,
+ e_InitialisationVector
+};
class ManifestImport : public cppu::WeakImplHelper1 < com::sun::star::xml::sax::XDocumentHandler >
{
private:
+ com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue > aSequence;
+ sal_Int16 nNumProperty;
+ ::std::stack < ElementNames > aStack;
std::vector < ::com::sun::star::uno::Sequence < ::com::sun::star::beans::PropertyValue > > & rManVector;
public:
ManifestImport( std::vector < ::com::sun::star::uno::Sequence < ::com::sun::star::beans::PropertyValue > > & rNewVector );