update dev300-m58
[ooovba.git] / autodoc / inc / ary / info / infodisp.hxx
blob50bb5a0515b9295013a74c27bd620b8dc8b8dbad
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: infodisp.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef ARY_INFO_INFODISP_HXX
32 #define ARY_INFO_INFODISP_HXX
33 // KORR_DEPRECATED_3.0
35 // BASE CLASSES
36 // USED SERVICES
41 namespace ary
43 namespace info
45 class StdTag;
46 class BaseTag;
47 class ExceptionTag;
48 class ImplementsTag;
49 class KeywordTag;
50 class ParameterTag;
51 class SeeTag;
52 class TemplateTag;
53 class LabelTag;
54 class SinceTag;
55 class DT_Text;
56 class DT_MaybeLink;
57 class DT_Whitespace;
58 class DT_Eol;
59 class DT_Xml;
63 /** Displaying an ary::doc::OldCppDocu.
65 @descr
66 This class is an interface, but the functions are defaulted,
67 to do nothing. so a derived class needn't implement all of them.
69 class DocuDisplay
71 public:
72 virtual ~DocuDisplay() {}
74 virtual void Display_StdTag(
75 const StdTag & i_rData ) = 0;
76 virtual void Display_BaseTag(
77 const BaseTag & i_rData ) = 0;
78 virtual void Display_ExceptionTag(
79 const ExceptionTag &
80 i_rData ) = 0;
81 virtual void Display_ImplementsTag(
82 const ImplementsTag &
83 i_rData ) = 0;
84 virtual void Display_KeywordTag(
85 const KeywordTag & i_rData ) = 0;
86 virtual void Display_ParameterTag(
87 const ParameterTag &
88 i_rData ) = 0;
89 virtual void Display_SeeTag(
90 const SeeTag & i_rData ) = 0;
91 virtual void Display_TemplateTag(
92 const TemplateTag & i_rData ) = 0;
93 virtual void Display_LabelTag(
94 const LabelTag & i_rData ) = 0;
95 virtual void Display_SinceTag(
96 const ary::info::SinceTag &
97 i_rData ) = 0;
98 virtual void Display_DT_Text(
99 const DT_Text & i_rData ) = 0;
100 virtual void Display_DT_MaybeLink(
101 const DT_MaybeLink& i_rData ) = 0;
102 virtual void Display_DT_Whitespace(
103 const DT_Whitespace &
104 i_rData ) = 0;
105 virtual void Display_DT_Eol(
106 const DT_Eol & i_rData ) = 0;
107 virtual void Display_DT_Xml(
108 const ary::info::DT_Xml &
109 i_rData ) = 0;
117 #endif