blob: 1f14ca04f878706cc6f7206c1a6a5c532f4cb134 (
plain)
1
2
3
4
5
6
7
8
|
#include "scanner.h"
Scanner::Scanner(std::shared_ptr<ICamera> camera,
std::vector<std::shared_ptr<IProtocol>> protocols)
: IScanner{camera, protocols}
{
// m_protocols.push_back()
}
|