Lugovtsov/project/hardware/Device.hpp
2022-11-10 15:26:32 +03:00

26 lines
303 B
C++

#pragma once
#include<fstream>
#include<iostream>
#include<string>
class Device
{
public:
Device(std::string path_name);
std::string get_name()
{
return name;
}
void command(std::string comm);
std::string query(std::string comm);
protected:
std::string name;
std::string root_path;
};