Lugovtsov/project/hardware/legacy/Device.hpp

23 lines
275 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 const &comm) const;
std::string query(std::string const &comm) const;
};