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