#pragma once #include "Gpio.h" #include "DevUtil.h" #include "scanservices_utils.h" #include #include "scannersysinfo.h" class TypeIO { private: /* data */ public: TypeIO(PORTS s0,PORTS s1,PORTS s2,PORTS s3); CISVendor GetCisType(); SMBType GetMotorType(); ~TypeIO(); private: Gpio gpio_s0; Gpio gpio_s1; Gpio gpio_s2; Gpio gpio_s3; CISVendor cisven; SMBType smbtype; };