diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-09-18 12:49:36 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-09-18 12:49:36 +0000 |
commit | fdc32d813a651f41f739af6877dfe8946f9573bf (patch) | |
tree | 64cea67902c04f0bd0ed2b708f57f965a205ffae /autodoc/source | |
parent | 4e23a105fe37d9cce4a12a01d0bf9f8562334383 (diff) |
INTEGRATION: CWS adc17 (1.5.18); FILE MERGED
2007/08/31 14:45:30 np 1.5.18.2: #i80569# remove wrong pchs.
2007/08/10 10:37:09 np 1.5.18.1: #i23626 correct spacing in autodoc output#
Diffstat (limited to 'autodoc/source')
-rw-r--r-- | autodoc/source/ary_i/kernel/d_token.cxx | 66 |
1 files changed, 58 insertions, 8 deletions
diff --git a/autodoc/source/ary_i/kernel/d_token.cxx b/autodoc/source/ary_i/kernel/d_token.cxx index a40136e92d87..b985d6c4743f 100644 --- a/autodoc/source/ary_i/kernel/d_token.cxx +++ b/autodoc/source/ary_i/kernel/d_token.cxx @@ -4,9 +4,9 @@ * * $RCSfile: d_token.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: obo $ $Date: 2006-09-16 16:39:08 $ + * last change: $Author: vg $ $Date: 2007-09-18 13:49:36 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -33,10 +33,6 @@ * ************************************************************************/ -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_autodoc.hxx" - - #include <precomp.h> #include <ary_i/d_token.hxx> @@ -58,6 +54,9 @@ DT_Dsapi::IsWhiteOnly() const return false; } +DT_TextToken::~DT_TextToken() +{ +} void DT_TextToken::DisplayAt( DocumentationDisplay & o_rDisplay ) const @@ -77,30 +76,66 @@ DT_TextToken::IsWhiteOnly() const return true; } +DT_White::~DT_White() +{ +} + +void +DT_White::DisplayAt( DocumentationDisplay & o_rDisplay ) const +{ + o_rDisplay.Display_White(); +} + +bool +DT_White::IsWhiteOnly() const +{ + return true; +} + +DT_MupType::~DT_MupType() +{ +} + void DT_MupType::DisplayAt( DocumentationDisplay & o_rDisplay ) const { o_rDisplay.Display_MupType( *this ); } +DT_MupMember::~DT_MupMember() +{ +} + void DT_MupMember::DisplayAt( DocumentationDisplay & o_rDisplay ) const { o_rDisplay.Display_MupMember( *this ); } +DT_MupConst::~DT_MupConst() +{ +} + void DT_MupConst::DisplayAt( DocumentationDisplay & o_rDisplay ) const { o_rDisplay.Display_MupConst( *this ); } +DT_Style::~DT_Style() +{ +} + void DT_Style::DisplayAt( DocumentationDisplay & o_rDisplay ) const { o_rDisplay.Display_Style( *this ); } +DT_EOL::~DT_EOL() +{ +} + void DT_EOL::DisplayAt( DocumentationDisplay & o_rDisplay ) const { @@ -113,24 +148,40 @@ DT_EOL::IsWhiteOnly() const return true; } +DT_StdAtTag::~DT_StdAtTag() +{ +} + void DT_StdAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const { o_rDisplay.Display_StdAtTag( *this ); } +DT_SeeAlsoAtTag::~DT_SeeAlsoAtTag() +{ +} + void DT_SeeAlsoAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const { o_rDisplay.Display_SeeAlsoAtTag( *this ); } +DT_ParameterAtTag::~DT_ParameterAtTag() +{ +} + void DT_ParameterAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const { o_rDisplay.Display_ParameterAtTag( *this ); } +DT_SinceAtTag::~DT_SinceAtTag() +{ +} + void DT_SinceAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const { @@ -139,7 +190,6 @@ DT_SinceAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const + } // namespace dsapi } // namespace csi - - |