cmvr-es/include/hardware/serial/serial_manager.h

21 lines
356 B
C
Raw Normal View History

2025-10-22 16:40:55 +08:00
//
// Created by linbo on 2025/10/22.
//
#ifndef CMVR_ES_SERIAL_MANAGER_H
#define CMVR_ES_SERIAL_MANAGER_H
2025-10-24 09:51:14 +08:00
#include "rapidxml/xml_parser.h"
2025-10-24 10:51:49 +08:00
namespace cmvr::hardware
2025-10-22 16:40:55 +08:00
{
2025-10-24 09:51:14 +08:00
class SerialManager
2025-10-22 16:40:55 +08:00
{
2025-10-24 09:51:14 +08:00
public:
explicit SerialManager(const XmlNode &cfg);
~SerialManager() = default;
private:
2025-10-22 16:40:55 +08:00
};
}
#endif //CMVR_ES_SERIAL_MANAGER_H