summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_cpplibrary/src/lib/encode/include/XBatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'veslibrary/ves_cpplibrary/src/lib/encode/include/XBatch.h')
-rwxr-xr-xveslibrary/ves_cpplibrary/src/lib/encode/include/XBatch.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/veslibrary/ves_cpplibrary/src/lib/encode/include/XBatch.h b/veslibrary/ves_cpplibrary/src/lib/encode/include/XBatch.h
new file mode 100755
index 0000000..c8c3663
--- /dev/null
+++ b/veslibrary/ves_cpplibrary/src/lib/encode/include/XBatch.h
@@ -0,0 +1,20 @@
+#pragma once
+
+#include "XEvent.h"
+
+namespace vagt
+{
+ namespace encode
+ {
+ class XBatch: public XSerialable
+ {
+ public:
+ virtual std::string toString() = 0;
+
+ virtual void addEvent(std::shared_ptr<vagt::encode::XSerialable> event) = 0;
+
+ static std::shared_ptr<XBatch> create();
+ };
+ }
+}
+ \ No newline at end of file