mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
9298065cef
CPR has features disabled and PCRE is fully disabled until updated to new code.
24 lines
457 B
C++
24 lines
457 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) : CurlContainer<Pair>(pairs) {}
|
|
};
|
|
|
|
} // namespace cpr
|
|
|
|
#endif
|