/* -*- 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 .
*/
// A replacement for ImplHelperN has deliberately been left out, as ImplHelperN // is unlikely ever be a better choice than WeakImplHelper, so all their // existing uses are probably confused and should use WeakImplHelper instead. // // Replacements for WeakAggImplHelperN and AggImplInheritanceHelperN have // deliberately been left out, as the underlying aggregation mechanism is known // broken in general and should not be used.
@derive Inherit from this class giving your interface(s) to be implemented as template argument(s).
*/ template<typename... Ifc> class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE WeakImplHelper: public OWeakObject, public css::lang::XTypeProvider, public Ifc...
{ struct cd:
rtl::StaticAggregate<
class_data, detail::ImplClassData<WeakImplHelper, Ifc...>>
{};
/** Implementation helper implementing interfaces css::uno::XInterface and css::lang::XTypeProvider inheriting from a BaseClass.
All acquire() and release() calls are delegated to the BaseClass. Upon queryInterface(), if a demanded interface is not supported by this class directly, the request is delegated to the BaseClass.
@attention The BaseClass has to be complete in the sense that css::uno::XInterface and css::lang::XTypeProvider are implemented properly.
@derive Inherit from this class giving your additional interface(s) to be implemented as template argument(s).
*/ template<typename BaseClass, typename... Ifc> class SAL_NO_VTABLE SAL_DLLPUBLIC_TEMPLATE ImplInheritanceHelper: public BaseClass, public Ifc...
{ struct cd:
rtl::StaticAggregate<
class_data, detail::ImplClassData<ImplInheritanceHelper, Ifc...>>
{};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.