LeviLamina
Loading...
Searching...
No Matches
HeaderCollection.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Http {
6
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 HeaderCollection& operator=(HeaderCollection const&);
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI void _addHeader(::std::string const& headerName, ::std::string const& headerValue, bool setValue);
24
25 MCAPI void add(::std::string const& headerName, ::std::string const& headerValue);
26
27 MCAPI void addNoSafetyChecks(::std::string const& headerName, ::std::string const& headerValue);
28
29 MCAPI ::std::string const& get(::std::string const& headerName) const;
30
31 MCAPI void set(::std::string const& headerName, ::std::string const& headerValue);
32
33 MCAPI ~HeaderCollection();
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCFOLD void $dtor();
40 // NOLINTEND
41};
42
43} // namespace Bedrock::Http
Definition HeaderCollection.h:7
Definition Alias.h:14