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/iscanner.h | |
| parent | 99b78ccb9cdb82d64aa3da32dd47b052d3f51732 (diff) | |
introduce Scanner
Diffstat (limited to 'src/iscanner.h')
| -rw-r--r-- | src/iscanner.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/iscanner.h b/src/iscanner.h index 9ce03b7..75300e1 100644 --- a/src/iscanner.h +++ b/src/iscanner.h @@ -14,6 +14,10 @@ public: std::vector<std::shared_ptr<IProtocol>> protocols); virtual ~IScanner() = default; +public: + virtual bool startAllProtocols() = 0; + virtual void stopAllProtocols() = 0; + protected: std::shared_ptr<ICamera> m_camera; std::vector<std::shared_ptr<IProtocol>> m_protocols; |
