/* -*- 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 .
*/
// this is a common baseclass that is used to count the objects
class InprocCountedObject_Impl
{ public:
InprocCountedObject_Impl();
~InprocCountedObject_Impl();
};
// this is the inprocess embedded object implementation class
class InprocEmbedDocument_Impl : public InprocCountedObject_Impl
, public IOleObject
, public IDataObject
, public IPersistStorage
, public IPersistFile
, public IRunnableObject
, public IViewObject2 // , public IExternalConnection
, public IOleInPlaceObject
, public IDispatch
{
ULONG m_refCount;
BOOLEAN m_bDeleted;
// the listeners have wrappers that are directly connected to the object and call the listeners, // the wrappers will be reconnected correctly to the new default inprocess holder object
sal::systools::COMReference< OleWrapperAdviseSink > m_pOleAdvises[DEFAULT_ARRAY_LEN];
sal::systools::COMReference< OleWrapperAdviseSink > m_pDataAdvises[DEFAULT_ARRAY_LEN];
sal::systools::COMReference< OleWrapperAdviseSink > m_pViewAdvise;
class InternalCacheWrapper final: public IOleCache2
{
InprocEmbedDocument_Impl& m_rOwnDocument;
¤ 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.0.15Bemerkung:
(vorverarbeitet)
¤
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 und die Messung sind noch experimentell.