mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
9298065cef
CPR has features disabled and PCRE is fully disabled until updated to new code.
8 lines
299 B
C++
8 lines
299 B
C++
#include "cpr/multipart.h"
|
|
|
|
namespace cpr {
|
|
Multipart::Multipart(const std::initializer_list<Part>& p_parts) : parts{p_parts} {}
|
|
Multipart::Multipart(const std::vector<Part>& p_parts) : parts{p_parts} {}
|
|
Multipart::Multipart(const std::vector<Part>&& p_parts) : parts{p_parts} {}
|
|
} // namespace cpr
|