merge the formfield patch from ooo-build
[ooovba.git] / autodoc / inc / ary / idl / ik_module.hxx
blob4b6e2dfb92be4f936315b435fb8f9b1637412101
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: ik_module.hxx,v $
10 * $Revision: 1.4 $
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_IDL_IK_MODULE_HXX
32 #define ARY_IDL_IK_MODULE_HXX
36 // USED SERVICES
37 // BASE CLASSES
38 #include <ary/idl/ik_ce.hxx>
39 // COMPONENTS
40 // PARAMETERS
43 namespace ary
45 namespace idl
48 class CePilot;
50 namespace ifc_module
53 using ifc_ce::Dyn_CeIterator;
54 using ifc_ce::DocText;
57 struct attr : public ifc_ce::attr
59 // KORR_FUTURE
60 // This has to be changed that way, that the differencing takes place
61 // within hfi_module.cxx and not here.
62 // So the class CePilot is not needed here, etc.
63 // Too much scope pollution.
64 static void Get_AllChildrenSeparated(
65 std::vector< const CodeEntity* > & o_nestedModules,
66 std::vector< const CodeEntity* > & o_services,
67 std::vector< const CodeEntity* > & o_interfaces,
68 std::vector< const CodeEntity* > & o_structs,
69 std::vector< const CodeEntity* > & o_exceptions,
70 std::vector< const CodeEntity* > & o_enums,
71 std::vector< const CodeEntity* > & o_typedefs,
72 std::vector< const CodeEntity* > & o_constantGroups,
73 std::vector< const CodeEntity* > & o_singletons,
74 const CePilot & i_pilot,
75 const CodeEntity & i_ce );
77 static void Get_SubModules(
78 Dyn_CeIterator & o_result,
79 const CodeEntity & i_ce );
80 static void Get_Services(
81 Dyn_CeIterator & o_result,
82 const CodeEntity & i_ce );
83 static void Get_Interfaces(
84 Dyn_CeIterator & o_result,
85 const CodeEntity & i_ce );
86 static void Get_Structs(
87 Dyn_CeIterator & o_result,
88 const CodeEntity & i_ce );
89 static void Get_Exceptions(
90 Dyn_CeIterator & o_result,
91 const CodeEntity & i_ce );
92 static void Get_Enums(
93 Dyn_CeIterator & o_result,
94 const CodeEntity & i_ce );
95 static void Get_Typedefs(
96 Dyn_CeIterator & o_result,
97 const CodeEntity & i_ce );
98 static void Get_ConstantsGroups(
99 Dyn_CeIterator & o_result,
100 const CodeEntity & i_ce );
103 struct xref : public ifc_ce::xref
107 struct doc : public ifc_ce::doc
111 } // namespace ifc_module
113 } // namespace idl
114 } // namespace ary
117 #endif