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 .
20 #ifndef ARY_INFO_INFODISP_HXX
21 #define ARY_INFO_INFODISP_HXX
22 // KORR_DEPRECATED_3.0
48 /** Displaying an ary::doc::OldCppDocu.
51 This class is an interface, but the functions are defaulted,
52 to do nothing. so a derived class needn't implement all of them.
57 virtual ~DocuDisplay() {}
59 virtual void Display_StdTag(
60 const StdTag
& i_rData
) = 0;
61 virtual void Display_BaseTag(
62 const BaseTag
& i_rData
) = 0;
63 virtual void Display_ExceptionTag(
66 virtual void Display_ImplementsTag(
69 virtual void Display_ParameterTag(
72 virtual void Display_TemplateTag(
73 const TemplateTag
& i_rData
) = 0;
74 virtual void Display_DT_Text(
75 const DT_Text
& i_rData
) = 0;
76 virtual void Display_DT_MaybeLink(
77 const DT_MaybeLink
& i_rData
) = 0;
78 virtual void Display_DT_Whitespace(
81 virtual void Display_DT_Eol(
82 const DT_Eol
& i_rData
) = 0;
83 virtual void Display_DT_Xml(
84 const ary::info::DT_Xml
&
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */