X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fdevices%2FCECPlaybackDevice.h;h=c6f26ec152b524662797654495dbce3eca817d5d;hb=7b62b76ed9aa25bfad944140edfde33903a417bb;hp=1af94855843406fc9bda28de9ba63fb980490d95;hpb=28089abcc287456abfa31081b7978eced6e4a660;p=deb_libcec.git diff --git a/src/lib/devices/CECPlaybackDevice.h b/src/lib/devices/CECPlaybackDevice.h index 1af9485..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. @@ -41,6 +41,16 @@ namespace CEC 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; }; }