summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_cpplibrary/src/lib/encode/include/XLoad.h
blob: 596648671ccd8627c8b6032a7fc5aa7d1411790e (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
25
26
#pragma once
        
#include "XEvent.h"

namespace vagt
{
    namespace encode
    {
        class XLoad 
        {
        public:
            XLoad();

            virtual void setShortTerm(XNumber shortTerm);
            virtual void setLongTerm(XNumber longTerm);
            virtual void setMidTerm(XNumber midTerm);

            std::shared_ptr<XLoad> imp_;
        protected:
            XLoad(void*);
        };

        using XArrayOfXLoad = std::vector<XLoad>;
    }
}