stuff-from-scratch/src/base/core/http/HttpParser.h
2023-01-27 17:04:39 +00:00

9 lines
No EOL
147 B
C++

#pragma once
#include "HttpPreamble.h"
class HttpParser
{
public:
static bool parsePreamble(const std::string& line, HttpPreamble& preamble);
};