wirelessgateway/tcpcgi/TcpCgi.hpp

32 lines
540 B
C++
Raw Normal View History

2021-09-18 13:45:24 +08:00
#ifndef TCPCGI_H
#define TCPCGI_H
#include <vector>
#include <string>
#include <boost/asio.hpp>
#include <boost/thread/thread.hpp>
#include <boost/lexical_cast.hpp>
#include <json/json.h>
#include <boost/array.hpp>
#include "../common/SH_CommonFunc.hpp"
#include "../API_log/SH_log.h"
#include "../utility/SH_MySingleton.hpp"
#include "../common/SH_global.h"
#include "../localserver/SH_LocalServer.hpp"
class TcpCgi : public MySingleton<TcpCgi> {
public:
TcpCgi();
~TcpCgi();
void startCgiServer();
};
#endif