| 53 | |
| 54 | public: |
| 55 | inline RemoteTextThread(std::string url_, std::string contentType_ = std::string(), |
| 56 | std::string postData_ = std::string(), int timeoutSec_ = 0) |
| 57 | : url(url_), |
| 58 | contentType(contentType_), |
| 59 | postData(postData_), |
| 60 | timeoutSec(timeoutSec_) |
| 61 | { |
| 62 | } |
| 63 | |
| 64 | inline RemoteTextThread(std::string url_, std::vector<std::string> &&headers_, |
| 65 | std::string contentType_ = std::string(), std::string postData_ = std::string(), |
nothing calls this directly
no outgoing calls
no test coverage detected