17#ifndef MS_HTTP_HELPER_PROGRESS_HPP
18#define MS_HTTP_HELPER_PROGRESS_HPP
23namespace msparser_internal {
24 class ms_http_helper_progress_impl;
27namespace matrix_science
71 bool isAbortSet()
const;
74 bool isStarted()
const;
77 UINT64 getCurrentBytes()
const;
78 UINT64 current()
const {
return getCurrentBytes(); }
81 UINT64 getTotalBytes()
const;
82 UINT64 total()
const {
return getTotalBytes(); }
85 double getProportion()
const;
86 double proportion()
const {
return getProportion(); }
89 bool isComplete()
const;
92 bool hasParent()
const;
98 std::unique_ptr<msparser_internal::ms_http_helper_progress_impl> pImpl_;
Used for submitting searches to a Mascot server and retrieving search results using HTTP(S).
Definition: ms_http_client_search.hpp:44
This holds information on the progress of a running HTTP transfer.
Definition: ms_http_helper_progress.hpp:46
The class provides HTTP, FTP and FILE protocol access to a server.
Definition: ms_http_helper.hpp:57