mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
24 lines
426 B
C
24 lines
426 B
C
|
#ifndef CPR_PAYLOAD_H
|
||
|
#define CPR_PAYLOAD_H
|
||
|
|
||
|
#include <initializer_list>
|
||
|
|
||
|
#include "cpr/curl_container.h"
|
||
|
|
||
|
|
||
|
namespace cpr {
|
||
|
class Payload : public CurlContainer<Pair> {
|
||
|
public:
|
||
|
template <class It>
|
||
|
Payload(const It begin, const It end) {
|
||
|
for (It pair = begin; pair != end; ++pair) {
|
||
|
Add(*pair);
|
||
|
}
|
||
|
}
|
||
|
Payload(const std::initializer_list<Pair>& pairs);
|
||
|
};
|
||
|
|
||
|
} // namespace cpr
|
||
|
|
||
|
#endif
|