Lugovtsov/project/hardware/Oscilloscope.hpp
2022-11-02 01:34:12 +03:00

8 lines
146 B
C++

#pragma once
#include "Device.hpp"
class Oscilloscope : public Device
{
public:
Oscilloscope(std::string path_name) : Device(path_name) {}
};