update credits
[LibreOffice.git] / autodoc / inc / ary / idl / ik_module.hxx
blob162831bfd008a4cb2d0bf7d371059c8a6bffc270
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef ARY_IDL_IK_MODULE_HXX
21 #define ARY_IDL_IK_MODULE_HXX
25 // USED SERVICES
26 // BASE CLASSES
27 #include <ary/idl/ik_ce.hxx>
28 // COMPONENTS
29 // PARAMETERS
32 namespace ary
34 namespace idl
37 class CePilot;
39 namespace ifc_module
42 using ifc_ce::Dyn_CeIterator;
43 using ifc_ce::DocText;
46 struct attr : public ifc_ce::attr
48 // KORR_FUTURE
49 // This has to be changed that way, that the differencing takes place
50 // within hfi_module.cxx and not here.
51 // So the class CePilot is not needed here, etc.
52 // Too much scope pollution.
53 static void Get_AllChildrenSeparated(
54 std::vector< const CodeEntity* > & o_nestedModules,
55 std::vector< const CodeEntity* > & o_services,
56 std::vector< const CodeEntity* > & o_interfaces,
57 std::vector< const CodeEntity* > & o_structs,
58 std::vector< const CodeEntity* > & o_exceptions,
59 std::vector< const CodeEntity* > & o_enums,
60 std::vector< const CodeEntity* > & o_typedefs,
61 std::vector< const CodeEntity* > & o_constantGroups,
62 std::vector< const CodeEntity* > & o_singletons,
63 const CePilot & i_pilot,
64 const CodeEntity & i_ce );
66 static void Get_SubModules(
67 Dyn_CeIterator & o_result,
68 const CodeEntity & i_ce );
69 static void Get_Services(
70 Dyn_CeIterator & o_result,
71 const CodeEntity & i_ce );
72 static void Get_Interfaces(
73 Dyn_CeIterator & o_result,
74 const CodeEntity & i_ce );
75 static void Get_Structs(
76 Dyn_CeIterator & o_result,
77 const CodeEntity & i_ce );
78 static void Get_Exceptions(
79 Dyn_CeIterator & o_result,
80 const CodeEntity & i_ce );
81 static void Get_Enums(
82 Dyn_CeIterator & o_result,
83 const CodeEntity & i_ce );
84 static void Get_Typedefs(
85 Dyn_CeIterator & o_result,
86 const CodeEntity & i_ce );
87 static void Get_ConstantsGroups(
88 Dyn_CeIterator & o_result,
89 const CodeEntity & i_ce );
92 struct xref : public ifc_ce::xref
96 struct doc : public ifc_ce::doc
100 } // namespace ifc_module
102 } // namespace idl
103 } // namespace ary
106 #endif
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */