LeviLamina
Loading...
Searching...
No Matches
hc_task.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace xbox::httpclient {
6
7class hc_task : public ::std::enable_shared_from_this<::xbox::httpclient::hc_task> {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 // vIndex: 0
12 virtual ~hc_task() = default;
13 // NOLINTEND
14};
15
16} // namespace xbox::httpclient
Definition hc_task.h:7