blob: 7cecc8c6604336e6a241849356b18c7779fa2efe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SERIAL_PORT_FACTORY_HPP
#define SERIAL_PORT_FACTORY_HPP 1
#include <memory>
#include "SerialPort.hpp"
class CSerialPortFactory {
public:
std::unique_ptr<CSerialPort> getSerialPort();
};
#endif
|