xref: /aoo41x/main/autodoc/inc/ary/info/infodisp.hxx (revision 1c78a5d6)
1*1c78a5d6SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*1c78a5d6SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*1c78a5d6SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*1c78a5d6SAndrew Rist  * distributed with this work for additional information
6*1c78a5d6SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*1c78a5d6SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*1c78a5d6SAndrew Rist  * "License"); you may not use this file except in compliance
9*1c78a5d6SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*1c78a5d6SAndrew Rist  *
11*1c78a5d6SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*1c78a5d6SAndrew Rist  *
13*1c78a5d6SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*1c78a5d6SAndrew Rist  * software distributed under the License is distributed on an
15*1c78a5d6SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*1c78a5d6SAndrew Rist  * KIND, either express or implied.  See the License for the
17*1c78a5d6SAndrew Rist  * specific language governing permissions and limitations
18*1c78a5d6SAndrew Rist  * under the License.
19*1c78a5d6SAndrew Rist  *
20*1c78a5d6SAndrew Rist  *************************************************************/
21*1c78a5d6SAndrew Rist 
22*1c78a5d6SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef ARY_INFO_INFODISP_HXX
25cdf0e10cSrcweir #define ARY_INFO_INFODISP_HXX
26cdf0e10cSrcweir //  KORR_DEPRECATED_3.0
27cdf0e10cSrcweir 
28cdf0e10cSrcweir // BASE CLASSES
29cdf0e10cSrcweir // USED SERVICES
30cdf0e10cSrcweir 
31cdf0e10cSrcweir 
32cdf0e10cSrcweir 
33cdf0e10cSrcweir 
34cdf0e10cSrcweir namespace ary
35cdf0e10cSrcweir {
36cdf0e10cSrcweir namespace info
37cdf0e10cSrcweir {
38cdf0e10cSrcweir     class StdTag;
39cdf0e10cSrcweir     class BaseTag;
40cdf0e10cSrcweir     class ExceptionTag;
41cdf0e10cSrcweir     class ImplementsTag;
42cdf0e10cSrcweir     class KeywordTag;
43cdf0e10cSrcweir     class ParameterTag;
44cdf0e10cSrcweir     class SeeTag;
45cdf0e10cSrcweir     class TemplateTag;
46cdf0e10cSrcweir     class LabelTag;
47cdf0e10cSrcweir     class SinceTag;
48cdf0e10cSrcweir     class DT_Text;
49cdf0e10cSrcweir     class DT_MaybeLink;
50cdf0e10cSrcweir     class DT_Whitespace;
51cdf0e10cSrcweir     class DT_Eol;
52cdf0e10cSrcweir     class DT_Xml;
53cdf0e10cSrcweir 
54cdf0e10cSrcweir 
55cdf0e10cSrcweir 
56cdf0e10cSrcweir /** Displaying an ary::doc::OldCppDocu.
57cdf0e10cSrcweir 
58cdf0e10cSrcweir     @descr
59cdf0e10cSrcweir     This class is an interface, but the functions are defaulted,
60cdf0e10cSrcweir     to do nothing. so a derived class needn't implement all of them.
61cdf0e10cSrcweir */
62cdf0e10cSrcweir class DocuDisplay
63cdf0e10cSrcweir {
64cdf0e10cSrcweir   public:
~DocuDisplay()65cdf0e10cSrcweir 	virtual 			~DocuDisplay() {}
66cdf0e10cSrcweir 
67cdf0e10cSrcweir     virtual void        Display_StdTag(
68cdf0e10cSrcweir                             const StdTag &      i_rData ) = 0;
69cdf0e10cSrcweir     virtual void        Display_BaseTag(
70cdf0e10cSrcweir                             const BaseTag &     i_rData ) = 0;
71cdf0e10cSrcweir     virtual void        Display_ExceptionTag(
72cdf0e10cSrcweir                             const ExceptionTag &
73cdf0e10cSrcweir                                                 i_rData ) = 0;
74cdf0e10cSrcweir     virtual void        Display_ImplementsTag(
75cdf0e10cSrcweir                             const ImplementsTag &
76cdf0e10cSrcweir                                                 i_rData ) = 0;
77cdf0e10cSrcweir     virtual void        Display_KeywordTag(
78cdf0e10cSrcweir                             const KeywordTag &  i_rData ) = 0;
79cdf0e10cSrcweir     virtual void        Display_ParameterTag(
80cdf0e10cSrcweir                             const ParameterTag &
81cdf0e10cSrcweir                                                 i_rData ) = 0;
82cdf0e10cSrcweir     virtual void        Display_SeeTag(
83cdf0e10cSrcweir                             const SeeTag &      i_rData ) = 0;
84cdf0e10cSrcweir     virtual void        Display_TemplateTag(
85cdf0e10cSrcweir                             const TemplateTag & i_rData ) = 0;
86cdf0e10cSrcweir     virtual void        Display_LabelTag(
87cdf0e10cSrcweir                             const LabelTag &    i_rData ) = 0;
88cdf0e10cSrcweir     virtual void        Display_SinceTag(
89cdf0e10cSrcweir                             const ary::info::SinceTag &
90cdf0e10cSrcweir                                                 i_rData ) = 0;
91cdf0e10cSrcweir     virtual void        Display_DT_Text(
92cdf0e10cSrcweir                             const DT_Text &     i_rData ) = 0;
93cdf0e10cSrcweir     virtual void        Display_DT_MaybeLink(
94cdf0e10cSrcweir                             const DT_MaybeLink& i_rData ) = 0;
95cdf0e10cSrcweir     virtual void        Display_DT_Whitespace(
96cdf0e10cSrcweir                             const DT_Whitespace &
97cdf0e10cSrcweir                                                 i_rData ) = 0;
98cdf0e10cSrcweir     virtual void        Display_DT_Eol(
99cdf0e10cSrcweir                             const DT_Eol &      i_rData ) = 0;
100cdf0e10cSrcweir     virtual void        Display_DT_Xml(
101cdf0e10cSrcweir                             const ary::info::DT_Xml &
102cdf0e10cSrcweir                                                 i_rData ) = 0;
103cdf0e10cSrcweir };
104cdf0e10cSrcweir 
105cdf0e10cSrcweir 
106cdf0e10cSrcweir 
107cdf0e10cSrcweir 
108cdf0e10cSrcweir }
109cdf0e10cSrcweir }
110cdf0e10cSrcweir #endif
111