diff options
author | Michael Brauer <mib@openoffice.org> | 2001-03-06 10:17:30 +0000 |
---|---|---|
committer | Michael Brauer <mib@openoffice.org> | 2001-03-06 10:17:30 +0000 |
commit | 3358aeb95e37b3e36aba09e90ba396a79c16e4b1 (patch) | |
tree | 9cec2961e14e9f9689be8ac681bd7b2a75efcf2e /sw/inc | |
parent | 86b7bd8cbfda37f9c21bb05fb1c6c4f050e47ec7 (diff) |
organizer support for XML file format
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/shellio.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx index 6783c5a95093..6ec9e5ec318a 100644 --- a/sw/inc/shellio.hxx +++ b/sw/inc/shellio.hxx @@ -2,9 +2,9 @@ * * $RCSfile: shellio.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: mib $ $Date: 2001-02-26 07:54:04 $ + * last change: $Author: mib $ $Date: 2001-03-06 11:08:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -267,6 +267,7 @@ protected: BOOL bTmplBrowseMode : 1; BOOL bReadUTF8: 1; // Stream als UTF-8 interpretieren BOOL bBlockMode: 1; + BOOL bOrganizerMode : 1; public: Reader(); @@ -298,6 +299,9 @@ public: BOOL IsBlockMode() const { return bBlockMode; } void SetBlockMode( BOOL bSet ) { bBlockMode = bSet; } + BOOL IsOrganizerMode() const { return bOrganizerMode; } + void SetOrganizerMode( BOOL bSet ) { bOrganizerMode = bSet; } + virtual BOOL HasGlossaries() const; virtual BOOL ReadGlossaries( SwTextBlocks&, BOOL bSaveRelFiles ) const; @@ -478,6 +482,7 @@ public: BOOL bUCS2_WithStartChar : 1; BOOL bBlock : 1; + BOOL bOrganizerMode : 1; Writer(); virtual ~Writer(); @@ -543,6 +548,9 @@ public: #else SvStream& Strm(); #endif + + BOOL IsOrganizerMode() const { return bOrganizerMode; } + void SetOrganizerMode( BOOL bSet ) { bOrganizerMode = bSet; } }; #ifndef SW_DECL_WRITER_DEFINED |