diff options
| author | Nikita Kostovsky <nikita@kostovsky.me> | 2025-11-17 16:28:45 +0100 |
|---|---|---|
| committer | Nikita Kostovsky <nikita@kostovsky.me> | 2025-11-17 16:28:45 +0100 |
| commit | 0fdae0386e2e55f489853561dc15055a168e5df1 (patch) | |
| tree | b91087c4696a3281fee528fc838b5447272432e0 /src/protocols/iprotocol.h | |
| parent | 99b78ccb9cdb82d64aa3da32dd47b052d3f51732 (diff) | |
introduce Scanner
Diffstat (limited to 'src/protocols/iprotocol.h')
| -rw-r--r-- | src/protocols/iprotocol.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/protocols/iprotocol.h b/src/protocols/iprotocol.h index 2d65dac..75259bc 100644 --- a/src/protocols/iprotocol.h +++ b/src/protocols/iprotocol.h @@ -10,6 +10,10 @@ public: explicit IProtocol(std::shared_ptr<ICamera> camera); virtual ~IProtocol() = default; +public: + virtual bool start() = 0; + virtual void stop() = 0; + protected: std::shared_ptr<ICamera> m_camera; }; |
