aboutsummaryrefslogtreecommitdiff
path: root/SerialPort/SerialPortFactory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'SerialPort/SerialPortFactory.hpp')
-rwxr-xr-xSerialPort/SerialPortFactory.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/SerialPort/SerialPortFactory.hpp b/SerialPort/SerialPortFactory.hpp
new file mode 100755
index 0000000..7cecc8c
--- /dev/null
+++ b/SerialPort/SerialPortFactory.hpp
@@ -0,0 +1,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