X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECPlaybackDevice.h;h=c6f26ec152b524662797654495dbce3eca817d5d;hb=a75e3a5a63546d6f7e670bc2a7a1931887a5d2a0;hp=2b13508375f3b9649a634c3f2f3a1e16dc7cb3cb;hpb=51b2a0943d227f8090948c3d603c643e410cd17d;p=deb_libcec.git diff --git a/src/lib/devices/CECPlaybackDevice.h b/src/lib/devices/CECPlaybackDevice.h index 2b13508..c6f26ec 100644 --- a/src/lib/devices/CECPlaybackDevice.h +++ b/src/lib/devices/CECPlaybackDevice.h @@ -2,7 +2,7 @@ /* * This file is part of the libCEC(R) library. * - * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved. + * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved. * libCEC(R) is an original work, containing original code. * * libCEC(R) is a trademark of Pulse-Eight Limited. @@ -40,5 +40,17 @@ namespace CEC public: CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress = 0); virtual ~CCECPlaybackDevice(void) {}; + + virtual cec_deck_info GetDeckStatus(void); + virtual cec_deck_control_mode GetDeckControlMode(void); + + virtual void SetDeckStatus(cec_deck_info deckStatus); + virtual void SetDeckControlMode(cec_deck_control_mode mode); + + virtual bool TransmitDeckStatus(cec_logical_address dest); + + protected: + cec_deck_info m_deckStatus; + cec_deck_control_mode m_deckControlMode; }; }