1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 #ifndef INCLUDED_stoc_source_registry_tdprovider_functiondescription_hxx 29 #define INCLUDED_stoc_source_registry_tdprovider_functiondescription_hxx 30 31 #include "com/sun/star/uno/Reference.hxx" 32 #include "com/sun/star/uno/Sequence.hxx" 33 #include "osl/mutex.hxx" 34 #include "sal/types.h" 35 36 namespace com { namespace sun { namespace star { 37 namespace container { 38 class XHierarchicalNameAccess; 39 } 40 namespace reflection { 41 class XCompoundTypeDescription; 42 } 43 } } } 44 namespace typereg { class Reader; } 45 46 namespace stoc { namespace registry_tdprovider { 47 48 class FunctionDescription { 49 public: 50 FunctionDescription( 51 com::sun::star::uno::Reference< 52 com::sun::star::container::XHierarchicalNameAccess > const & 53 manager, 54 com::sun::star::uno::Sequence< sal_Int8 > const & bytes, 55 sal_uInt16 index); 56 57 ~FunctionDescription(); 58 59 com::sun::star::uno::Sequence< 60 com::sun::star::uno::Reference< 61 com::sun::star::reflection::XCompoundTypeDescription > > 62 getExceptions() const; 63 64 protected: 65 typereg::Reader getReader() const; 66 67 com::sun::star::uno::Reference< 68 com::sun::star::container::XHierarchicalNameAccess > m_manager; 69 com::sun::star::uno::Sequence< sal_Int8 > m_bytes; 70 sal_uInt16 m_index; 71 72 mutable osl::Mutex m_mutex; 73 mutable com::sun::star::uno::Sequence< 74 com::sun::star::uno::Reference< 75 com::sun::star::reflection::XCompoundTypeDescription > > 76 m_exceptions; 77 mutable bool m_exceptionsInit; 78 79 private: 80 FunctionDescription(FunctionDescription &); // not implemented 81 void operator =(FunctionDescription); // not implemented 82 }; 83 84 } } 85 86 #endif 87