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