X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECPlaybackDevice.h;h=f8a24a19170d870d6ac750d1c9cfad5250309c66;hb=5734016c1b1e932c19a85bb671211c4967399f8c;hp=24ce072af0e423fba722c7b5b3f393bbe1624724;hpb=8ac9c610be214885ff040d23acb707eeaba1276c;p=deb_libcec.git diff --git a/src/lib/devices/CECPlaybackDevice.h b/src/lib/devices/CECPlaybackDevice.h index 24ce072..f8a24a1 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,13 +41,16 @@ namespace CEC CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress = 0); virtual ~CCECPlaybackDevice(void) {}; - virtual cec_deck_info GetDeckStatus(void) const { return m_deckStatus; }; + cec_deck_info GetDeckStatus(void); + cec_deck_control_mode GetDeckControlMode(void); - virtual void SetDeckStatus(cec_deck_info deckStatus); + void SetDeckStatus(cec_deck_info deckStatus); + void SetDeckControlMode(cec_deck_control_mode mode); - virtual bool TransmitDeckStatus(cec_logical_address dest); + bool TransmitDeckStatus(cec_logical_address dest); protected: - cec_deck_info m_deckStatus; + cec_deck_info m_deckStatus; + cec_deck_control_mode m_deckControlMode; }; }