summaryrefslogtreecommitdiffstats
path: root/src/uscxml/URL.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-11-07 22:20:09 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-11-07 22:20:09 (GMT)
commitda08a1d3c3bca8070c9b029cfc1f8faf9e34dd25 (patch)
treeb285148ab6ca415814d9370148f91736f83c852c /src/uscxml/URL.h
parent0ae6c27d9322208053033d9b19c0ffffed3d99eb (diff)
downloaduscxml-da08a1d3c3bca8070c9b029cfc1f8faf9e34dd25.zip
uscxml-da08a1d3c3bca8070c9b029cfc1f8faf9e34dd25.tar.gz
uscxml-da08a1d3c3bca8070c9b029cfc1f8faf9e34dd25.tar.bz2
Committing local version again
Diffstat (limited to 'src/uscxml/URL.h')
-rw-r--r--src/uscxml/URL.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/uscxml/URL.h b/src/uscxml/URL.h
new file mode 100644
index 0000000..d6fc9ed
--- /dev/null
+++ b/src/uscxml/URL.h
@@ -0,0 +1,22 @@
+#ifndef URL_H_27HPRH76
+#define URL_H_27HPRH76
+
+#include "Utilities.h"
+
+namespace uscxml {
+
+class URL {
+public:
+ URL(const std::string urlString) : _urlString(urlString) {}
+
+private:
+ std::string _urlString;
+ friend std::ostream & operator<<(std::ostream &stream, const URL& p);
+};
+
+std::ostream & operator<<(std::ostream &stream, const URL& url);
+
+}
+
+
+#endif /* end of include guard: URL_H_27HPRH76 */