fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / autodoc / source / ary_i / kernel / d_token.cxx
blobd330c0b788ac78999738fee46fbff1825684146a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #include <precomp.h>
21 #include <ary_i/d_token.hxx>
24 // NOT FULLY DEFINED SERVICES
25 #include <ary_i/disdocum.hxx>
30 namespace csi
32 namespace dsapi
35 bool
36 DT_Dsapi::IsWhiteOnly() const
38 return false;
41 DT_TextToken::~DT_TextToken()
45 void
46 DT_TextToken::DisplayAt( DocumentationDisplay & o_rDisplay ) const
48 o_rDisplay.Display_TextToken( *this );
51 bool
52 DT_TextToken::IsWhiteOnly() const
54 const char *it = sText.c_str();
55 while (static_cast<UINT8>(*it++) > 32)
57 return false;
59 return true;
62 DT_White::~DT_White()
66 void
67 DT_White::DisplayAt( DocumentationDisplay & o_rDisplay ) const
69 o_rDisplay.Display_White();
72 bool
73 DT_White::IsWhiteOnly() const
75 return true;
78 DT_MupType::~DT_MupType()
82 void
83 DT_MupType::DisplayAt( DocumentationDisplay & o_rDisplay ) const
85 o_rDisplay.Display_MupType( *this );
88 DT_MupMember::~DT_MupMember()
92 void
93 DT_MupMember::DisplayAt( DocumentationDisplay & o_rDisplay ) const
95 o_rDisplay.Display_MupMember( *this );
98 DT_MupConst::~DT_MupConst()
102 void
103 DT_MupConst::DisplayAt( DocumentationDisplay & o_rDisplay ) const
105 o_rDisplay.Display_MupConst( *this );
108 DT_Style::~DT_Style()
112 void
113 DT_Style::DisplayAt( DocumentationDisplay & o_rDisplay ) const
115 o_rDisplay.Display_Style( *this );
118 DT_EOL::~DT_EOL()
122 void
123 DT_EOL::DisplayAt( DocumentationDisplay & o_rDisplay ) const
125 o_rDisplay.Display_EOL();
128 bool
129 DT_EOL::IsWhiteOnly() const
131 return true;
134 DT_StdAtTag::~DT_StdAtTag()
138 void
139 DT_StdAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const
141 o_rDisplay.Display_StdAtTag( *this );
144 DT_SeeAlsoAtTag::~DT_SeeAlsoAtTag()
148 void
149 DT_SeeAlsoAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const
151 o_rDisplay.Display_SeeAlsoAtTag( *this );
154 DT_ParameterAtTag::~DT_ParameterAtTag()
158 void
159 DT_ParameterAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const
161 o_rDisplay.Display_ParameterAtTag( *this );
164 DT_SinceAtTag::~DT_SinceAtTag()
168 void
169 DT_SinceAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const
171 o_rDisplay.Display_SinceAtTag( *this );
177 } // namespace dsapi
178 } // namespace csi
180 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */