You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
728 B
31 lines
728 B
#include "ConsumerIr.h"
|
|
|
|
namespace android {
|
|
namespace hardware {
|
|
namespace ir {
|
|
namespace V1_0 {
|
|
namespace implementation {
|
|
|
|
// Methods from ::android::hardware::ir::V1_0::IConsumerIr follow.
|
|
Return<bool> ConsumerIr::transmit(int32_t carrierFreq, const hidl_vec<int32_t>& pattern) {
|
|
// TODO implement
|
|
return bool {};
|
|
}
|
|
|
|
Return<void> ConsumerIr::getCarrierFreqs(getCarrierFreqs_cb _hidl_cb) {
|
|
// TODO implement
|
|
return Void();
|
|
}
|
|
|
|
|
|
// Methods from ::android::hidl::base::V1_0::IBase follow.
|
|
|
|
//IConsumerIr* HIDL_FETCH_IConsumerIr(const char* /* name */) {
|
|
//return new ConsumerIr();
|
|
//}
|
|
//
|
|
} // namespace implementation
|
|
} // namespace V1_0
|
|
} // namespace ir
|
|
} // namespace hardware
|
|
} // namespace android
|
|
|