2012-07-11 17:44:41 +01:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
2012-07-09 10:57:32 +01:00
|
|
|
#ifndef _SD_IMPRESSREMOTE_RECEIVER_HXX
|
|
|
|
#define _SD_IMPRESSREMOTE_RECEIVER_HXX
|
|
|
|
|
2012-07-11 17:44:41 +01:00
|
|
|
#include <com/sun/star/presentation/XSlideShowListener.hpp>
|
2012-07-09 10:57:32 +01:00
|
|
|
#include <com/sun/star/presentation/XSlideShowController.hpp>
|
2012-07-09 15:53:03 +01:00
|
|
|
#include <com/sun/star/presentation/XPresentationSupplier.hpp>
|
|
|
|
#include <com/sun/star/presentation/XPresentation.hpp>
|
|
|
|
#include <com/sun/star/presentation/XPresentation2.hpp>
|
2012-07-11 17:44:41 +01:00
|
|
|
#include <osl/socket.hxx>
|
2012-07-09 10:57:32 +01:00
|
|
|
#include <stdlib.h>
|
2012-07-12 22:10:33 +01:00
|
|
|
|
|
|
|
#include <vector>
|
2012-07-09 10:57:32 +01:00
|
|
|
|
2012-07-13 17:34:49 +01:00
|
|
|
#include "Transmitter.hxx"
|
|
|
|
|
2012-07-12 14:36:57 +01:00
|
|
|
namespace css = ::com::sun::star;
|
|
|
|
|
2012-07-09 10:57:32 +01:00
|
|
|
namespace sd
|
|
|
|
{
|
2012-07-09 11:52:22 +01:00
|
|
|
|
2012-07-09 10:57:32 +01:00
|
|
|
class Receiver
|
|
|
|
{
|
|
|
|
public:
|
2012-07-13 17:34:49 +01:00
|
|
|
Receiver( Transmitter *aTransmitter );
|
2012-07-09 10:57:32 +01:00
|
|
|
~Receiver();
|
2012-07-13 17:34:49 +01:00
|
|
|
void parseCommand( std::vector<rtl::OString> aCommand );
|
2012-07-09 11:52:22 +01:00
|
|
|
|
2012-07-09 10:57:32 +01:00
|
|
|
private:
|
2012-07-18 16:14:52 +02:00
|
|
|
Transmitter *pTransmitter;
|
2012-07-09 15:53:03 +01:00
|
|
|
};
|
2012-07-09 10:57:32 +01:00
|
|
|
|
|
|
|
}
|
2012-07-09 11:52:22 +01:00
|
|
|
#endif // _SD_IMPRESSREMOTE_RECEIVER_HXX
|