kopia lustrzana https://github.com/jameshball/osci-render
32 wiersze
832 B
C++
32 wiersze
832 B
C++
/*
|
|
* IXUrlParser.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace ix
|
|
{
|
|
class UrlParser
|
|
{
|
|
public:
|
|
static bool parse(const std::string& url,
|
|
std::string& protocol,
|
|
std::string& host,
|
|
std::string& path,
|
|
std::string& query,
|
|
int& port);
|
|
|
|
static bool parse(const std::string& url,
|
|
std::string& protocol,
|
|
std::string& host,
|
|
std::string& path,
|
|
std::string& query,
|
|
int& port,
|
|
bool& isProtocolDefaultPort);
|
|
};
|
|
} // namespace ix
|