diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-02-16 11:07:57 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-02-16 12:55:48 +0100 |
commit | e42a0361c986c39a9456226f1465a7fb721fe111 (patch) | |
tree | 67120790e85b977be6c5a5578293a6b3c31888af /tracker-wii/wii_camera.h | |
parent | 5a8c8f1d45997165396502e9404ed371e5ae59fe (diff) |
tracker/{pt,wii}: simplify api
Remove useless abstract member functions, simplify
some.
Issue: #718
Diffstat (limited to 'tracker-wii/wii_camera.h')
-rw-r--r-- | tracker-wii/wii_camera.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tracker-wii/wii_camera.h b/tracker-wii/wii_camera.h index d0d7f6dd..55def206 100644 --- a/tracker-wii/wii_camera.h +++ b/tracker-wii/wii_camera.h @@ -29,8 +29,9 @@ namespace pt_module { struct WIICamera final : pt_camera { WIICamera(const QString& module_name); + ~WIICamera() override; - pt_camera_open_status start(int idx, int fps, int res_x, int res_y) override; + bool start(int idx, int fps, int res_x, int res_y) override; void stop() override; result get_frame(pt_frame& Frame) override; @@ -40,12 +41,9 @@ struct WIICamera final : pt_camera QString get_desired_name() const override; QString get_active_name() const override; - operator bool() const override { return m_pDev && (!m_pDev->ConnectionLost()); } - void set_fov(double value) override {} void show_camera_settings() override; - private: std::unique_ptr<wiimote> m_pDev; static void on_state_change(wiimote &remote, |