summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_cpplibrary/src/lib/encode/include/XBatch.h
blob: c8c366331e933c021fd087d4c55d68113acb744c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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();
        };
    }
}