diff options
author | Sascha Ballach <sab@openoffice.org> | 2001-02-21 08:47:21 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2001-02-21 08:47:21 +0000 |
commit | 7461832bab0d421180da7ae06d405221e8f2c71a (patch) | |
tree | f6f533bc6924d8a3987de37b35fdb20c6e87ae9e /sc/source/ui/inc/viewdata.hxx | |
parent | 4efc03bf439b85a2817ea8bd080b35c647e85341 (diff) |
add WriteUserDateInAny and ReadUserDataFromAny methods to ScViewData and ScViewDataTable. this methods will be used to give the XML Export/Import the view settings.
Diffstat (limited to 'sc/source/ui/inc/viewdata.hxx')
-rw-r--r-- | sc/source/ui/inc/viewdata.hxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sc/source/ui/inc/viewdata.hxx b/sc/source/ui/inc/viewdata.hxx index c156fd499b65..6240c10acb1f 100644 --- a/sc/source/ui/inc/viewdata.hxx +++ b/sc/source/ui/inc/viewdata.hxx @@ -2,9 +2,9 @@ * * $RCSfile: viewdata.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: nn $ $Date: 2000-09-25 17:33:50 $ + * last change: $Author: sab $ $Date: 2001-02-21 09:47:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -154,6 +154,9 @@ private: ScViewDataTable(); ScViewDataTable( const ScViewDataTable& rDataTable ); ~ScViewDataTable(); + + void WriteUserDataInAny(com::sun::star::uno::Any& aAny); + void ReadUserDataFromAny(const com::sun::star::uno::Any& aAny); }; // --------------------------------------------------------------------------- @@ -250,6 +253,8 @@ public: void WriteUserData(String& rData); void ReadUserData(const String& rData); void ReadExtOptions(const ScExtDocOptions& rOpt); + void WriteUserDataInAny(com::sun::star::uno::Any& aAny); + void ReadUserDataFromAny(const com::sun::star::uno::Any& aAny); ScDocument* GetDocument() const; |