21 lines
333 B
C
21 lines
333 B
C
|
|
//
|
||
|
|
// Created by linbo on 2025/10/23.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef CMVR_ES_ABSTRACTCONTROLLER_H
|
||
|
|
#define CMVR_ES_ABSTRACTCONTROLLER_H
|
||
|
|
|
||
|
|
#include <curl/curl.h>
|
||
|
|
|
||
|
|
#include "rapidxml/xml_parser.h"
|
||
|
|
|
||
|
|
namespace cmvr::device
|
||
|
|
{
|
||
|
|
class AbstractController
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
explicit AbstractController();
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif //CMVR_ES_ABSTRACTCONTROLLER_H
|