diff options
author | Nikolai Pretzell <np@openoffice.org> | 2002-11-14 17:02:06 +0000 |
---|---|---|
committer | Nikolai Pretzell <np@openoffice.org> | 2002-11-14 17:02:06 +0000 |
commit | d5d550be4281af0b678f5662787b2f186501a0cb (patch) | |
tree | 16c855c5c049fc44cc5c2f31e233ba62bbab3d72 /autodoc/inc/display | |
parent | b9a59049ae75807446d3ffd2ee50f631bb2d420d (diff) |
Some features in IDL docu.
Diffstat (limited to 'autodoc/inc/display')
-rw-r--r-- | autodoc/inc/display/corframe.hxx | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/autodoc/inc/display/corframe.hxx b/autodoc/inc/display/corframe.hxx index 108025ce8184..29102e3fbb92 100644 --- a/autodoc/inc/display/corframe.hxx +++ b/autodoc/inc/display/corframe.hxx @@ -2,9 +2,9 @@ * * $RCSfile: corframe.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: np $ $Date: 2002-11-01 17:12:31 $ + * last change: $Author: np $ $Date: 2002-11-14 18:01:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -79,8 +79,10 @@ namespace display class CorporateFrame { public: + // LIFECYCLE virtual ~CorporateFrame() {} + // INQUIRY virtual DYN Html_Image * LogoSrc() const = 0; virtual const char * @@ -88,7 +90,16 @@ class CorporateFrame virtual const char * CopyrightText() const = 0; - virtual const char * CssStyle() const = 0; + virtual const char * + CssStyle() const = 0; + virtual const char * + DevelopersGuideHtmlRoot() const = 0; + virtual bool SimpleLinks() const = 0; + + // ACCESS + virtual void Set_DevelopersGuideHtmlRoot( + const String & i_directory ) = 0; + virtual void Set_SimpleLinks() = 0; }; |