summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/tools/lldb/source/Utility/UriParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Utility/UriParser.h')
-rw-r--r--contrib/llvm/tools/lldb/source/Utility/UriParser.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/contrib/llvm/tools/lldb/source/Utility/UriParser.h b/contrib/llvm/tools/lldb/source/Utility/UriParser.h
new file mode 100644
index 0000000..c46628d
--- /dev/null
+++ b/contrib/llvm/tools/lldb/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_
OpenPOWER on IntegriCloud