Welcome to mirror list, hosted at ThFree Co, Russian Federation.

http_thread_qt.cpp « platform - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05de43f55cf1fded6e4705f1132d1a2be7231420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "http_thread_qt.hpp"
#include "http_thread_callback.hpp"

#include "../std/string.hpp"

// @TODO empty stub, add QT implementation

namespace downloader
{
HttpThread * CreateNativeHttpThread(string const & url,
                                    downloader::IHttpThreadCallback & cb,
                                    int64_t beg,
                                    int64_t end,
                                    int64_t size,
                                    string const & pb)
{
  return 0;
}

void DeleteNativeHttpThread(HttpThread * request)
{
}

} // namespace downloader