LibreOffice Module embeddedobj (master) 1
embeddedupdate.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9
10#pragma once
11
13
14namespace com
15{
16namespace sun
17{
18namespace star
19{
20namespace embed
21{
27class EMBOBJ_DLLPUBLIC SAL_LOPLUGIN_ANNOTATE("crosscast") EmbeddedUpdate
28{
37public:
38 virtual void SetOleState(bool bIsOleUpdate) = 0;
39
40 EmbeddedUpdate() = default;
41 virtual ~EmbeddedUpdate() = default;
42
43private:
44 EmbeddedUpdate(const EmbeddedUpdate&) = delete;
45 EmbeddedUpdate& operator=(const EmbeddedUpdate&) = delete;
46};
47};
48};
49};
50};
51
52/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
#define EMBOBJ_DLLPUBLIC
Definition: embobjdllapi.h:17
class EMBOBJ_DLLPUBLIC SAL_LOPLUGIN_ANNOTATE("crosscast") EmbeddedUpdate
This class is only used to tell the OCommonEmbeddedObject class that the following call is an Link- /...