blob: c4ae0772b7f4a998e37942add6ef64e2fd0f6f40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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_;
};
}
}
|