#ifndef SERIAL_PORT_FACTORY_HPP #define SERIAL_PORT_FACTORY_HPP 1 #include #include "SerialPort.hpp" class CSerialPortFactory { public: std::unique_ptr getSerialPort(); }; #endif