The ones that remain blocking are the ones that run on different threads; see Task, yet another big mess to clean up.
17 lines
227 B
C++
17 lines
227 B
C++
#pragma once
|
|
#include "Request.h"
|
|
#include <memory>
|
|
|
|
class SaveInfo;
|
|
|
|
namespace http
|
|
{
|
|
class GetSaveRequest : public Request
|
|
{
|
|
public:
|
|
GetSaveRequest(int saveID, int saveDate);
|
|
|
|
std::unique_ptr<SaveInfo> Finish();
|
|
};
|
|
}
|