summaryrefslogtreecommitdiff
path: root/src/storage/http_request_baton.cpp
blob: 315708f4e0b7fd82d28b11c6a0c286ed78f5272a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <mbgl/storage/http_request_baton.hpp>
#include <uv.h>

namespace mbgl {

HTTPRequestBaton::HTTPRequestBaton(const std::string &path_) : thread_id(std::this_thread::get_id()), path(path_) {
}

HTTPRequestBaton::~HTTPRequestBaton() {
}

}