1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef ARY_IDL_IK_MODULE_HXX
30 #define ARY_IDL_IK_MODULE_HXX
36 #include <ary/idl/ik_ce.hxx>
51 using ifc_ce::Dyn_CeIterator
;
52 using ifc_ce::DocText
;
55 struct attr
: public ifc_ce::attr
58 // This has to be changed that way, that the differencing takes place
59 // within hfi_module.cxx and not here.
60 // So the class CePilot is not needed here, etc.
61 // Too much scope pollution.
62 static void Get_AllChildrenSeparated(
63 std::vector
< const CodeEntity
* > & o_nestedModules
,
64 std::vector
< const CodeEntity
* > & o_services
,
65 std::vector
< const CodeEntity
* > & o_interfaces
,
66 std::vector
< const CodeEntity
* > & o_structs
,
67 std::vector
< const CodeEntity
* > & o_exceptions
,
68 std::vector
< const CodeEntity
* > & o_enums
,
69 std::vector
< const CodeEntity
* > & o_typedefs
,
70 std::vector
< const CodeEntity
* > & o_constantGroups
,
71 std::vector
< const CodeEntity
* > & o_singletons
,
72 const CePilot
& i_pilot
,
73 const CodeEntity
& i_ce
);
75 static void Get_SubModules(
76 Dyn_CeIterator
& o_result
,
77 const CodeEntity
& i_ce
);
78 static void Get_Services(
79 Dyn_CeIterator
& o_result
,
80 const CodeEntity
& i_ce
);
81 static void Get_Interfaces(
82 Dyn_CeIterator
& o_result
,
83 const CodeEntity
& i_ce
);
84 static void Get_Structs(
85 Dyn_CeIterator
& o_result
,
86 const CodeEntity
& i_ce
);
87 static void Get_Exceptions(
88 Dyn_CeIterator
& o_result
,
89 const CodeEntity
& i_ce
);
90 static void Get_Enums(
91 Dyn_CeIterator
& o_result
,
92 const CodeEntity
& i_ce
);
93 static void Get_Typedefs(
94 Dyn_CeIterator
& o_result
,
95 const CodeEntity
& i_ce
);
96 static void Get_ConstantsGroups(
97 Dyn_CeIterator
& o_result
,
98 const CodeEntity
& i_ce
);
101 struct xref
: public ifc_ce::xref
105 struct doc
: public ifc_ce::doc
109 } // namespace ifc_module
117 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */