summaryrefslogtreecommitdiffstats
path: root/src/uscxml/messages/Blob.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-27 22:32:46 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-06-27 22:32:46 (GMT)
commitc70d02010ea99e6c8e35da3b767f41f1ee5dce56 (patch)
treea0ef030204ec2eb656845d03876006d9cdc0760c /src/uscxml/messages/Blob.h
parenta4b506fd774ec50ad79b7531bd3698c5a6339407 (diff)
downloaduscxml-c70d02010ea99e6c8e35da3b767f41f1ee5dce56.zip
uscxml-c70d02010ea99e6c8e35da3b767f41f1ee5dce56.tar.gz
uscxml-c70d02010ea99e6c8e35da3b767f41f1ee5dce56.tar.bz2
Major header movement
- Used IWYU to reorganize headers - Dropped PHP support - Updated tests
Diffstat (limited to 'src/uscxml/messages/Blob.h')
-rw-r--r--src/uscxml/messages/Blob.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/uscxml/messages/Blob.h b/src/uscxml/messages/Blob.h
new file mode 100644
index 0000000..b4fcd46
--- /dev/null
+++ b/src/uscxml/messages/Blob.h
@@ -0,0 +1,47 @@
+/**
+ * @file
+ * @author 2012-2014 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 BLOB_H_E1B6D2C3
+#define BLOB_H_E1B6D2C3
+
+#include <string>
+
+#include "uscxml/Common.h"
+
+namespace uscxml {
+
+class USCXML_API Blob {
+public:
+ ~Blob();
+ Blob(size_t size);
+ Blob(void* data, size_t size, const std::string& mimeType, bool adopt = false);
+ char* data;
+ size_t size;
+ std::string mimeType;
+
+ std::string base64();
+
+ std::string md5();
+ Blob* fromBase64(const std::string base64);
+
+};
+
+}
+
+#endif /* end of include guard: BLOB_H_E1B6D2C3 */