diff --git a/platform/chunks_download_strategy.hpp b/platform/chunks_download_strategy.hpp index 5ac930a9ec..fd24bcd2d3 100644 --- a/platform/chunks_download_strategy.hpp +++ b/platform/chunks_download_strategy.hpp @@ -4,6 +4,8 @@ #include "../std/vector.hpp" #include "../std/utility.hpp" #include "../std/set.hpp" +#include "../std/stdint.hpp" +#include "../std/cstdio.hpp" namespace downloader { diff --git a/platform/http_thread_qt.cpp b/platform/http_thread_qt.cpp new file mode 100644 index 0000000000..05de43f55c --- /dev/null +++ b/platform/http_thread_qt.cpp @@ -0,0 +1,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 + diff --git a/platform/http_thread_qt.hpp b/platform/http_thread_qt.hpp new file mode 100644 index 0000000000..cb5b46b49b --- /dev/null +++ b/platform/http_thread_qt.hpp @@ -0,0 +1,7 @@ +#pragma once + +#include "../std/stdint.hpp" + +class HttpThread +{ +}; diff --git a/platform/platform.pro b/platform/platform.pro index 4e3c995ab4..253fdf56e5 100644 --- a/platform/platform.pro +++ b/platform/platform.pro @@ -19,6 +19,11 @@ include($$ROOT_DIR/common.pri) location_service.cpp HEADERS += wifi_info.hpp \ location_service.hpp + !macx* { + SOURCES += http_thread_qt.cpp + HEADERS += http_thread_qt.hpp + } + win32* { SOURCES += platform_win.cpp \ wifi_info_windows.cpp