Update ooo320-m1
[ooovba.git] / stoc / source / registry_tdprovider / structtypedescription.hxx
blob5a3c4bfa0b99a2d5176b086f5a735df18956eace
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: structtypedescription.hxx,v $
10 * $Revision: 1.5 $
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 INCLUDED_stoc_source_registry_tdprovider_structtypedescription_hxx
32 #define INCLUDED_stoc_source_registry_tdprovider_structtypedescription_hxx
34 #include "com/sun/star/reflection/XPublished.hpp"
35 #include "com/sun/star/reflection/XStructTypeDescription.hpp"
36 #include "com/sun/star/uno/Reference.hxx"
37 #include "com/sun/star/uno/Sequence.hxx"
38 #include "cppuhelper/implbase2.hxx"
39 #include "rtl/ref.hxx"
40 #include "sal/types.h"
42 namespace com { namespace sun { namespace star {
43 namespace container { class XHierarchicalNameAccess; }
44 namespace reflection { class XCompoundTypeDescription; }
45 } } }
46 namespace rtl { class OUString; }
47 namespace stoc_rdbtdp { class CompoundTypeDescriptionImpl; }
49 namespace stoc { namespace registry_tdprovider {
51 class StructTypeDescription:
52 public cppu::WeakImplHelper2<
53 com::sun::star::reflection::XStructTypeDescription,
54 com::sun::star::reflection::XPublished >
56 public:
57 StructTypeDescription(
58 com::sun::star::uno::Reference<
59 com::sun::star::container::XHierarchicalNameAccess > const &
60 manager,
61 rtl::OUString const & name, rtl::OUString const & baseTypeName,
62 com::sun::star::uno::Sequence< sal_Int8 > const & data, bool published);
64 virtual ~StructTypeDescription();
66 virtual com::sun::star::uno::TypeClass SAL_CALL getTypeClass()
67 throw (com::sun::star::uno::RuntimeException);
69 virtual rtl::OUString SAL_CALL getName()
70 throw (com::sun::star::uno::RuntimeException);
72 virtual
73 com::sun::star::uno::Reference<
74 com::sun::star::reflection::XTypeDescription >
75 SAL_CALL getBaseType() throw (com::sun::star::uno::RuntimeException);
77 virtual
78 com::sun::star::uno::Sequence<
79 com::sun::star::uno::Reference<
80 com::sun::star::reflection::XTypeDescription > >
81 SAL_CALL getMemberTypes() throw (com::sun::star::uno::RuntimeException);
83 virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
84 getMemberNames() throw (com::sun::star::uno::RuntimeException);
86 virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
87 getTypeParameters() throw (com::sun::star::uno::RuntimeException);
89 virtual
90 com::sun::star::uno::Sequence<
91 com::sun::star::uno::Reference<
92 com::sun::star::reflection::XTypeDescription > >
93 SAL_CALL getTypeArguments() throw (com::sun::star::uno::RuntimeException);
95 virtual sal_Bool SAL_CALL isPublished()
96 throw (com::sun::star::uno::RuntimeException);
98 private:
99 StructTypeDescription(StructTypeDescription &); // not implemented
100 void operator =(StructTypeDescription); // not implemented
102 com::sun::star::uno::Sequence< sal_Int8 > m_data;
103 rtl::Reference< stoc_rdbtdp::CompoundTypeDescriptionImpl > m_base;
108 #endif