| 12345678910111213141516171819202122232425262728293031 |
- #ifndef API_WEBAPI_H
- #define API_WEBAPI_H
- #include <HttpPostData.h>
- #include <ctpl_stl.h>
- #include <string>
- #include <vector>
- namespace Http {
- class HttpClient;
- } // namespace Http
- namespace CameraRecorder {
- namespace API {
- class WebAPI
- {
- public:
- WebAPI();
- ~WebAPI();
- static std::string ProcessQuery(ctpl::thread_pool* pThreadPool, Http::HttpClient* pHttpClient, const std::string& path, const std::string& ffmpeg, const std::string& uri, const std::vector<Http::HttpPostData>& postData);
- };
- } // namespace API
- } // namespace DomoticaServer
- #endif // API_WEBAPI_H
|