1/*
2 * IXUrlParser.h
3 * Author: Benjamin Sergeant
4 * Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
5 */
6
7#pragma once
8
9#include <string>
10
11namespace ix
12{
13 class UrlParser
14 {
15 public:
16 static bool parse(const std::string& url,
17 std::string& protocol,
18 std::string& host,
19 std::string& path,
20 std::string& query,
21 int& port);
22 };
23} // namespace ix
24