1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include <ary_i/d_token.hxx>
24 // NOT FULLY DEFINED SERVICES
25 #include <ary_i/disdocum.hxx>
36 DT_Dsapi::IsWhiteOnly() const
41 DT_TextToken::~DT_TextToken()
46 DT_TextToken::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
48 o_rDisplay
.Display_TextToken( *this );
52 DT_TextToken::IsWhiteOnly() const
54 const char *it
= sText
.c_str();
55 while (static_cast<UINT8
>(*it
++) > 32)
67 DT_White::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
69 o_rDisplay
.Display_White();
73 DT_White::IsWhiteOnly() const
78 DT_MupType::~DT_MupType()
83 DT_MupType::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
85 o_rDisplay
.Display_MupType( *this );
88 DT_MupMember::~DT_MupMember()
93 DT_MupMember::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
95 o_rDisplay
.Display_MupMember( *this );
98 DT_MupConst::~DT_MupConst()
103 DT_MupConst::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
105 o_rDisplay
.Display_MupConst( *this );
108 DT_Style::~DT_Style()
113 DT_Style::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
115 o_rDisplay
.Display_Style( *this );
123 DT_EOL::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
125 o_rDisplay
.Display_EOL();
129 DT_EOL::IsWhiteOnly() const
134 DT_StdAtTag::~DT_StdAtTag()
139 DT_StdAtTag::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
141 o_rDisplay
.Display_StdAtTag( *this );
144 DT_SeeAlsoAtTag::~DT_SeeAlsoAtTag()
149 DT_SeeAlsoAtTag::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
151 o_rDisplay
.Display_SeeAlsoAtTag( *this );
154 DT_ParameterAtTag::~DT_ParameterAtTag()
159 DT_ParameterAtTag::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
161 o_rDisplay
.Display_ParameterAtTag( *this );
164 DT_SinceAtTag::~DT_SinceAtTag()
169 DT_SinceAtTag::DisplayAt( DocumentationDisplay
& o_rDisplay
) const
171 o_rDisplay
.Display_SinceAtTag( *this );
180 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */