summaryrefslogtreecommitdiffstats
path: root/sysfs/ReadingEnhancement.cpp
blob: bf71df978f18377bf1e6942d72729b987233e4bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "ReadingEnhancement.h"

namespace vendor {
namespace lineage {
namespace livedisplay {
namespace V2_0 {
namespace implementation {

// Methods from ::vendor::lineage::livedisplay::V2_0::IReadingEnhancement follow.
Return<bool> ReadingEnhancement::isEnabled() {
    // TODO implement
    return bool {};
}

Return<bool> ReadingEnhancement::setEnabled(bool enabled) {
    // TODO implement
    return bool {};
}


// Methods from ::android::hidl::base::V1_0::IBase follow.

//IReadingEnhancement* HIDL_FETCH_IReadingEnhancement(const char* /* name */) {
    //return new ReadingEnhancement();
//}
//
}  // namespace implementation
}  // namespace V2_0
}  // namespace livedisplay
}  // namespace lineage
}  // namespace vendor