twain3/device/ScannerFinder.h

15 lines
230 B
C
Raw Permalink Normal View History

#pragma once
#include <memory>
#include <list>
class IGScan;
typedef std::shared_ptr<IGScan> ScannerPtr;
typedef std::list<ScannerPtr> ScannerList;
class ScannerFinder
{
public:
static ScannerList ScannerFinder::find();
};