32 lines
540 B
C++
32 lines
540 B
C++
|
#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
|
||
|
|
||
|
|
||
|
|
||
|
|