From fdc32d813a651f41f739af6877dfe8946f9573bf Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Tue, 18 Sep 2007 12:49:36 +0000 Subject: 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# --- autodoc/source/ary_i/kernel/d_token.cxx | 66 +++++++++++++++++++++++++++++---- 1 file changed, 58 insertions(+), 8 deletions(-) (limited to 'autodoc/source') 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 #include @@ -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 - - -- cgit