24 lines
441 B
C++
24 lines
441 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/common_func.hpp"
|
|
#include "common/global.hpp"
|
|
#include "localserver/local_server.hpp"
|
|
|
|
class TcpCgi {
|
|
public:
|
|
TcpCgi();
|
|
~TcpCgi();
|
|
|
|
static void startCgiServer();
|
|
};
|
|
|
|
#endif
|