#ifndef __SERIALPORT_H__ #define __SERIALPORT_H__ #include class SerialPort { public: bool Open(std::string path, int, int); bool Close(); protected: int m_fd; }; #endif // __SERIALPORT_H__