2021-03-26 23:18:51 +01:00
|
|
|
#ifndef CPR_USERAGENT_H
|
|
|
|
#define CPR_USERAGENT_H
|
|
|
|
|
|
|
|
#include <initializer_list>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "cpr/cprtypes.h"
|
|
|
|
|
|
|
|
namespace cpr {
|
|
|
|
class UserAgent : public StringHolder<UserAgent> {
|
|
|
|
public:
|
2023-08-05 20:31:33 +02:00
|
|
|
UserAgent() = default;
|
2021-03-26 23:18:51 +01:00
|
|
|
// NOLINTNEXTLINE(google-explicit-constructor, hicpp-explicit-conversions)
|
2023-08-05 20:31:33 +02:00
|
|
|
UserAgent(std::string useragent) : StringHolder<UserAgent>(std::move(useragent)) {}
|
2021-03-26 23:18:51 +01:00
|
|
|
// NOLINTNEXTLINE(google-explicit-constructor, hicpp-explicit-conversions)
|
2023-08-05 20:31:33 +02:00
|
|
|
UserAgent(std::string_view useragent) : StringHolder<UserAgent>(useragent) {}
|
2021-03-26 23:18:51 +01:00
|
|
|
// NOLINTNEXTLINE(google-explicit-constructor, hicpp-explicit-conversions)
|
|
|
|
UserAgent(const char* useragent) : StringHolder<UserAgent>(useragent) {}
|
|
|
|
UserAgent(const char* str, size_t len) : StringHolder<UserAgent>(str, len) {}
|
|
|
|
UserAgent(const std::initializer_list<std::string> args) : StringHolder<UserAgent>(args) {}
|
|
|
|
UserAgent(const UserAgent& other) = default;
|
|
|
|
UserAgent(UserAgent&& old) noexcept = default;
|
|
|
|
~UserAgent() override = default;
|
|
|
|
|
|
|
|
UserAgent& operator=(UserAgent&& old) noexcept = default;
|
|
|
|
UserAgent& operator=(const UserAgent& other) = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace cpr
|
|
|
|
|
|
|
|
#endif
|