Thoth
A functional, expressive, asynchronous C++26 webdev library
Loading...
Searching...
No Matches
Upgrade.hpp
Go to the documentation of this file.
1#pragma once
2#include <string>
3#include <optional>
4
5namespace Thoth::Http::NHeaders {
6 struct Upgrade {
7 std::string protocol{};
8 std::optional<std::string> version{};
9 };
10}
11
12#include <Thoth/Http/NHeaders/Headers/Upgrade.tpp>
Definition _base.hpp:5
Definition Upgrade.hpp:6
std::string protocol
Definition Upgrade.hpp:7
std::optional< std::string > version
Definition Upgrade.hpp:8