g1g2hardwarechecker/G1G2Checker.cpp

25 lines
400 B
C++
Raw Permalink Normal View History

2024-01-08 10:06:47 +00:00
#include "pch.h"
#include "G1G2Checker.h"
G1G2Checker::G1G2Checker()
{
}
G1G2Checker::~G1G2Checker()
{
}
std::vector<std::pair<int, std::string>> G1G2Checker::GetSupportCheckList()
{
return std::vector<std::pair<int, std::string>>();
}
int G1G2Checker::ActionCheck(int ID)
{
return 0;
}
void G1G2Checker::SetCheckCallback(const std::function<int(int, std::string, void* unused)> callback)
{
}