/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_CPPUHELPER_COMPBASE9_HXX #define INCLUDED_CPPUHELPER_COMPBASE9_HXX #include #include namespace cppu { /** Implementation helper supporting css::lang::XTypeProvider and css::lang::XComponent. Upon disposing objects of this class, sub-classes receive a disposing() call. Objects of this class can be held weakly, i.e. by a css::uno::WeakReference. @attention The life-cycle of the passed mutex reference has to be longer than objects of this class. @derive Inherit from this class giving your interface(s) to be implemented as template argument(s). Your sub class defines method implementations for these interface(s). */ template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9 > class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakComponentImplHelper9 : public WeakComponentImplHelperBase , public css::lang::XTypeProvider , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9 { struct cd : public rtl::StaticAggregate< class_data, ImplClassData9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, WeakComponentImplHelper9 > > {}; public: inline WeakComponentImplHelper9( ::osl::Mutex & rMutex ) throw () : WeakComponentImplHelperBase( rMutex ) {} virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return WeakComponentImplHelper_query( rType, cd::get(), this, static_cast(this) ); } virtual void SAL_CALL acquire() throw () SAL_OVERRIDE { WeakComponentImplHelperBase::acquire(); } virtual void SAL_CALL release() throw () SAL_OVERRIDE { WeakComponentImplHelperBase::release(); } virtual void SAL_CALL dispose()throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { WeakComponentImplHelperBase::dispose(); } virtual void SAL_CALL addEventListener(const css::uno::Reference< css::lang::XEventListener > & xListener)throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { WeakComponentImplHelperBase::addEventListener(xListener); } virtual void SAL_CALL removeEventListener(const css::uno::Reference< css::lang::XEventListener > & xListener)throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { WeakComponentImplHelperBase::removeEventListener(xListener); } virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return WeakComponentImplHelper_getTypes( cd::get() ); } virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return ImplHelper_getImplementationId( cd::get() ); } }; /** Same as WeakComponentImplHelper9, except doesn't implement addEventListener, removeEventListener and dispose. This requires derived classes to implement those three methods. This makes it possible to implement classes which are required to implement methods from multiple bases which have different addEventListener/removeEventListener signatures without triggering the g++ overloaded-virtual warning */ template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9 > class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE PartialWeakComponentImplHelper9 : public WeakComponentImplHelperBase , public css::lang::XTypeProvider , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9 { struct cd : public rtl::StaticAggregate< class_data, ImplClassData9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, PartialWeakComponentImplHelper9 > > {}; public: inline PartialWeakComponentImplHelper9( ::osl::Mutex & rMutex ) throw () : WeakComponentImplHelperBase( rMutex ) {} virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return WeakComponentImplHelper_query( rType, cd::get(), this, static_cast(this) ); } virtual void SAL_CALL acquire() throw () SAL_OVERRIDE { WeakComponentImplHelperBase::acquire(); } virtual void SAL_CALL release() throw () SAL_OVERRIDE { WeakComponentImplHelperBase::release(); } virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return WeakComponentImplHelper_getTypes( cd::get() ); } virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return ImplHelper_getImplementationId( cd::get() ); } }; /** Implementation helper supporting css::lang::XTypeProvider and css::lang::XComponent. Upon disposing objects of this class, sub-classes receive a disposing() call. Objects of this class can be held weakly, i.e. by a css::uno::WeakReference. Object of this class can be aggregated, i.e. incoming queryInterface() calls are delegated. @attention The life-cycle of the passed mutex reference has to be longer than objects of this class. @derive Inherit from this class giving your interface(s) to be implemented as template argument(s). Your sub class defines method implementations for these interface(s). @deprecated */ template< class Ifc1, class Ifc2, class Ifc3, class Ifc4, class Ifc5, class Ifc6, class Ifc7, class Ifc8, class Ifc9 > class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakAggComponentImplHelper9 : public WeakAggComponentImplHelperBase , public css::lang::XTypeProvider , public Ifc1, public Ifc2, public Ifc3, public Ifc4, public Ifc5, public Ifc6, public Ifc7, public Ifc8, public Ifc9 { struct cd : public rtl::StaticAggregate< class_data, ImplClassData9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, WeakAggComponentImplHelper9 > > {}; public: inline WeakAggComponentImplHelper9( ::osl::Mutex & rMutex ) throw () : WeakAggComponentImplHelperBase( rMutex ) {} virtual css::uno::Any SAL_CALL queryInterface( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return WeakAggComponentImplHelperBase::queryInterface( rType ); } virtual css::uno::Any SAL_CALL queryAggregation( css::uno::Type const & rType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, static_cast(this) ); } virtual void SAL_CALL acquire() throw () SAL_OVERRIDE { WeakAggComponentImplHelperBase::acquire(); } virtual void SAL_CALL release() throw () SAL_OVERRIDE { WeakAggComponentImplHelperBase::release(); } virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return WeakAggComponentImplHelper_getTypes( cd::get() ); } virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return ImplHelper_getImplementationId( cd::get() ); } }; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ e='distro/vector/vector-24.2'>distro/vector/vector-24.2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2015-07-03Fix typosAndrea Gelmini
2015-06-30Fix typosAndrea Gelmini
2015-06-18Fix typosAndrea Gelmini
2015-06-08loplugin:cstylecast: deal with remaining pointer castsStephan Bergmann
2015-04-02Move osl::LibreOfficeKit stuff to comphelper for nowTor Lillqvist
2015-04-01Add API to check whether being used through LibreOfficeKitTor Lillqvist
2015-03-28Clean up C-style casts from pointers to voidStephan Bergmann
2015-03-12sal: PVS-Studio V611 memory was allocated using 'new T[]' operatorMichael Stahl
2015-03-01mismatched new[]/deleteDavid Tardon
2015-02-07loplugin:deletedspecialStephan Bergmann
2015-01-20Some more loplugin:cstylecast: salStephan Bergmann
2015-01-08osl/detail/component-defines.h is used in cppumaker-generated codeStephan Bergmann
2015-01-08[API CHANGE] remove oslDescriptorType/FlagStephan Bergmann
2015-01-08[API CHANGE] Remove osl_send/receiveResourcePipeStephan Bergmann
2015-01-08brute-force find-and-remove of unused #define constants.Noel Grandin
2015-01-02Fix simple typos.Andrea Gelmini
2014-12-20TyposJulien Nabet
2014-12-05loplugin:cstylecast, involving pointer to incomplete typeStephan Bergmann
2014-12-05loplugin:cstylecast, involving pointer to incomplete typeStephan Bergmann
2014-12-04[API CHANGE] Remove osl_setCommandArgsStephan Bergmann
2014-11-19sal, cppuhelper headers a little more complete and self-containedMichael Stahl
2014-11-17sal: clean up public headers with include-what-you-useMichael Stahl
2014-11-17sal: remove pointless checking for __cplusplus in public C++ headersMichael Stahl
2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini
2014-10-31cid#1242936 handle rename failureStephan Bergmann
2014-10-31Duplicate lineStephan Bergmann
2014-10-02MWERKS etc. are not supported toolchainsMichael Stahl
2014-09-11(Rudimentary) C++11 support is a hard requirement nowStephan Bergmann
2014-08-17warning C4800: 'unsigned long' : forcing value to bool 'true' or 'false'Thomas Arnhold
2014-08-13warning C4365: 'argument' : conversion from 'sal_Int32' to 'sal_uInt32'Thomas Arnhold
2014-08-08osl: kill check for ancient freebsd < 7 versionsRiccardo Magliocchetti
2014-07-31Mark osl_areCommandArgsSet as internal only.Andrzej Hunt
2014-07-31Add @since to osl_areCommandArgsSet.Andrzej Hunt
2014-07-11Introduce osl_areCommandArgsSet.Andrzej Hunt
2014-06-30android: Introduce LibreOfficeKit.java to bootstrap using LibreOfficeKit.Jan Holesovsky
2014-06-06fixincludeguards: fix include guardsThomas Arnhold
2014-06-05various: remove SAL_THROW macroNoel Grandin
2014-05-20fdo#60338: Introduce osl_createDirectoryWithFlagsStephan Bergmann
2014-05-19fdo#60338: Add osl_File_OpenFlag_Private to avoid umaskStephan Bergmann
2014-05-17Correct common misspellings, and remove some ASCII art along the way.Chris Laplante
2014-05-15Resolves: #i124896# [API CHANGE] remove obsoleted rtl/allocator.hxxHerbert Dürr
2014-05-13osl_openFilePath is internal sal/osl/unx functionalityStephan Bergmann
2014-05-13All three uses of osl_getFileOSHandle have been removed againStephan Bergmann
2014-05-13osl_openMemoryAsFile is internal, Android-only functionalityStephan Bergmann