summaryrefslogtreecommitdiffstats
path: root/src/uscxml/URL.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-10-16 18:35:17 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-10-16 18:35:17 (GMT)
commit60c543c1d8c6699cc96829f15b16ecc60ac0b410 (patch)
treef0087f620d45246acf0268da539cb815796d88c0 /src/uscxml/URL.h
parent4d186e24e44fe07f04708c2dc38387534c02c7fd (diff)
downloaduscxml-60c543c1d8c6699cc96829f15b16ecc60ac0b410.zip
uscxml-60c543c1d8c6699cc96829f15b16ecc60ac0b410.tar.gz
uscxml-60c543c1d8c6699cc96829f15b16ecc60ac0b410.tar.bz2
Added license information and bug fixes
Diffstat (limited to 'src/uscxml/URL.h')
-rw-r--r--src/uscxml/URL.h33
1 files changed, 27 insertions, 6 deletions
diff --git a/src/uscxml/URL.h b/src/uscxml/URL.h
index 26b9437..5f55454 100644
--- a/src/uscxml/URL.h
+++ b/src/uscxml/URL.h
@@ -1,3 +1,22 @@
+/**
+ * @file
+ * @author 2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
+ * @copyright Simplified BSD
+ *
+ * @cond
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the FreeBSD license as published by the FreeBSD
+ * project.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * You should have received a copy of the FreeBSD license along with this
+ * program. If not, see <http://www.opensource.org/licenses/bsd-license>.
+ * @endcond
+ */
+
#ifndef URL_H_9DAEGSMV
#define URL_H_9DAEGSMV
@@ -22,7 +41,7 @@ namespace uscxml {
class URL;
-class URLMonitor {
+class USCXML_API URLMonitor {
public:
virtual void downloadStarted(const URL& url) {};
virtual void downloadCompleted(const URL& url) {};
@@ -31,7 +50,7 @@ public:
virtual void contentChunkReceived(const URL& url, const std::string& contentChunk) {};
};
-class URLImpl : public boost::enable_shared_from_this<URLImpl> {
+class USCXML_API URLImpl : public boost::enable_shared_from_this<URLImpl> {
public:
URLImpl(const std::string& url);
~URLImpl();
@@ -133,7 +152,7 @@ protected:
typedef std::set<URLMonitor*>::iterator monIter_t;
};
-class URL {
+class USCXML_API URL {
public:
URL() : _impl() {}
URL(const std::string url) : _impl(new URLImpl(url)) {}
@@ -248,9 +267,9 @@ public:
static std::string tmpDir();
static std::map<std::string, std::string> mimeTypes;
static std::string getMimeType(const std::string extension, std::string magic = "");
-
+
friend class URLFetcher;
- friend std::ostream & operator<<(std::ostream &stream, const URL& p);
+ friend USCXML_API std::ostream & operator<<(std::ostream &stream, const URL& p);
operator Data() const {
return _impl->operator Data();
@@ -270,7 +289,7 @@ protected:
boost::shared_ptr<URLImpl> _impl;
};
-class URLFetcher {
+class USCXML_API URLFetcher {
public:
URLFetcher();
~URLFetcher();
@@ -297,6 +316,8 @@ protected:
CURLM* _multiHandle;
};
+USCXML_API std::ostream& operator<< (std::ostream &stream, const URL& p);
+
}
#endif /* end of include guard: URL_H_9DAEGSMV */