diff options
Diffstat (limited to 'source/Utility/UriParser.h')
-rw-r--r-- | source/Utility/UriParser.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/source/Utility/UriParser.h b/source/Utility/UriParser.h new file mode 100644 index 0000000000000..c46628d3bd68f --- /dev/null +++ b/source/Utility/UriParser.h @@ -0,0 +1,31 @@ +//===-- UriParser.h ---------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef utility_UriParser_h_ +#define utility_UriParser_h_ + +// C Includes +// C++ Includes +#include <string> + +// Other libraries and framework includes +// Project includes + +class UriParser +{ +public: + static bool Parse(const char* uri, + std::string& scheme, + std::string& hostname, + int& port, + std::string& path + ); +}; + +#endif // utility_UriParser_h_ |