21 lines
356 B
C++
21 lines
356 B
C++
//
|
|
// Created by linbo on 2025/10/22.
|
|
//
|
|
|
|
#ifndef CMVR_ES_SERIAL_MANAGER_H
|
|
#define CMVR_ES_SERIAL_MANAGER_H
|
|
#include "rapidxml/xml_parser.h"
|
|
namespace cmvr::hardware
|
|
{
|
|
class SerialManager
|
|
{
|
|
public:
|
|
explicit SerialManager(const XmlNode &cfg);
|
|
~SerialManager() = default;
|
|
|
|
private:
|
|
|
|
};
|
|
}
|
|
|
|
#endif //CMVR_ES_SERIAL_MANAGER_H
|