summaryrefslogtreecommitdiffstats
path: root/src/uscxml/URL.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-08-09 15:05:52 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-08-09 15:05:52 (GMT)
commit6dce9df7f483f3229bb2f34f0386ce37a1551e07 (patch)
tree1d3acaec4612d74ee3234c808df7ae5fa3b4ef9f /src/uscxml/URL.h
parent01f8198f8b548e3f28cad1a441ceb8af6ea850a4 (diff)
downloaduscxml-6dce9df7f483f3229bb2f34f0386ce37a1551e07.zip
uscxml-6dce9df7f483f3229bb2f34f0386ce37a1551e07.tar.gz
uscxml-6dce9df7f483f3229bb2f34f0386ce37a1551e07.tar.bz2
Extended Java bindings and OpenAL invoker
Diffstat (limited to 'src/uscxml/URL.h')
-rw-r--r--src/uscxml/URL.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/uscxml/URL.h b/src/uscxml/URL.h
index bb33a7c..646ea3f 100644
--- a/src/uscxml/URL.h
+++ b/src/uscxml/URL.h
@@ -8,6 +8,7 @@
#include <map>
#include <vector>
#include <set>
+#include "Message.h"
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <sys/stat.h>
@@ -89,6 +90,7 @@ public:
bool downloadFailed() {
return _hasFailed;
}
+ operator Data();
friend class URLFetcher;
@@ -225,6 +227,10 @@ public:
friend class URLFetcher;
friend std::ostream & operator<<(std::ostream &stream, const URL& p);
+ operator Data() {
+ return _impl->operator Data();
+ }
+
protected:
void downloadStarted() {
return _impl->downloadStarted();