X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECRecordingDevice.h;h=4130e7b2e437858ddc3ae9b957ec112520f9c394;hb=f7773e4047c9030aa02418ab33319ab14ebdacca;hp=86bd80a84c3ceca8c2917bc4c2ea538e44c2f6a4;hpb=88e5de6f3e5f0f0ff13f47490c364aa68b5e773c;p=deb_libcec.git diff --git a/src/lib/devices/CECRecordingDevice.h b/src/lib/devices/CECRecordingDevice.h index 86bd80a..4130e7b 100644 --- a/src/lib/devices/CECRecordingDevice.h +++ b/src/lib/devices/CECRecordingDevice.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-2013 Pulse-Eight Limited. All rights reserved. * libCEC(R) is an original work, containing original code. * * libCEC(R) is a trademark of Pulse-Eight Limited. @@ -31,14 +31,22 @@ * http://www.pulse-eight.net/ */ +#include "CECBusDevice.h" #include "CECPlaybackDevice.h" +#include "CECTuner.h" namespace CEC { class CCECRecordingDevice : public CCECPlaybackDevice { public: - CCECRecordingDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress = 0); + CCECRecordingDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress = CEC_INVALID_PHYSICAL_ADDRESS); virtual ~CCECRecordingDevice(void) {}; + + virtual void ResetDeviceStatus(void); + + /* TODO: tuner methods */ + protected: + CCECTuner m_tuner; }; }