summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/arrow-up.svg
AgeCommit message (Expand)Author
2020-02-14qcam: assets: Provide initial icon setKieran Bingham
kwc">public Object { public: enum Type { Read, Write, Exception, }; EventNotifier(int fd, Type type, Object *parent = nullptr); virtual ~EventNotifier(); Type type() const { return type_; } int fd() const { return fd_; } bool enabled() const { return enabled_; } void setEnabled(bool enable); Signal<EventNotifier *> activated; protected: void message(Message *msg) override; private: int fd_; Type type_; bool enabled_; }; } /* namespace libcamera */ #endif /* __LIBCAMERA_EVENT_NOTIFIER_H__ */