g1g2hardwarechecker/G1G2Checker.h

16 lines
358 B
C++

#pragma once
#include "IScannerCheck.h"
class G1G2Checker :
public IScannerChecker
{
public:
G1G2Checker();
virtual ~G1G2Checker();
virtual std::vector<std::pair<int, std::string>> GetSupportCheckList();
virtual int ActionCheck(int ID);
virtual void SetCheckCallback(const std::function<int(int, std::string, void* unused)> callback);
};