Bump for 3.6-28
[LibreOffice.git] / autodoc / source / ary / idl / i_reposypart.hxx
blob417d970814bfbf11b2cae9c629032b59f1d27f76
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_I_REPOSYPART_HXX
30 #define ARY_IDL_I_REPOSYPART_HXX
34 // USED SERVICES
35 // BASE CLASSES
36 #include <idl_internalgate.hxx>
37 // OTHER
40 namespace ary
42 namespace idl
44 class CeAdmin;
45 class TypeAdmin;
46 class NameLookup;
54 namespace ary
56 namespace idl
61 /** The idl part of the Autodoc repository.
63 class RepositoryPartition : public InternalGate
65 public:
66 // LIFECYCLE
67 RepositoryPartition(
68 RepositoryCenter & i_repository );
69 ~RepositoryPartition();
70 // INHERITED
71 // Interface Gate:
72 virtual void Calculate_AllSecondaryInformation(
73 const String & i_devman_reffilepath );
74 // const ::autodoc::Options &
75 // i_options );
76 virtual const CePilot &
77 Ces() const;
78 virtual const TypePilot &
79 Types() const;
80 virtual CePilot & Ces();
81 virtual TypePilot & Types();
83 private:
84 // DATA
85 RepositoryCenter * pCenter;
87 Dyn<CeAdmin> pCes;
88 Dyn<TypeAdmin> pTypes;
89 Dyn<NameLookup> pNamesDictionary;
95 } // namespace idl
96 } // namespace ary
97 #endif
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */