1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
10 #ifndef INCLUDED_SC_SOURCE_UI_INC_SCCOLLABORATION_HXX
11 #define INCLUDED_SC_SOURCE_UI_INC_SCCOLLABORATION_HXX
13 #include <sal/config.h>
15 #include <tubes/collaboration.hxx>
19 class ScCollaboration
: public Collaboration
21 ScDocShell
* mpScDocShell
;
23 ScCollaboration( ScDocShell
* pScDocShell
);
24 virtual ~ScCollaboration();
26 virtual void EndCollaboration() const;
27 virtual void PacketReceived( const OString
& rPacket
) const;
28 virtual void SaveAndSendFile( TpContact
* pContact
) const;
29 virtual void StartCollaboration( TeleConference
* pConference
);
31 friend class ScDocShell
;
32 ScDocFuncSend
* GetScDocFuncSend() const;
35 #endif // INCLUDED_SC_SOURCE_UI_INC_SCCOLLABORATION_HXX
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */