mirror of
https://github.com/DumbDev69420/EscapeTheBackrooms_Internal.git
synced 2025-06-29 02:12:24 +08:00
19 lines
320 B
C++
19 lines
320 B
C++
#ifndef CPR_PARAMETERS_H
|
|
#define CPR_PARAMETERS_H
|
|
|
|
#include <initializer_list>
|
|
|
|
#include "cpr/curl_container.h"
|
|
|
|
namespace cpr {
|
|
|
|
class Parameters : public CurlContainer<Parameter> {
|
|
public:
|
|
Parameters() = default;
|
|
Parameters(const std::initializer_list<Parameter>& parameters);
|
|
};
|
|
|
|
} // namespace cpr
|
|
|
|
#endif
|