summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_cpplibrary/src/lib/encode/include/XLoad.h
diff options
context:
space:
mode:
Diffstat (limited to 'veslibrary/ves_cpplibrary/src/lib/encode/include/XLoad.h')
-rwxr-xr-xveslibrary/ves_cpplibrary/src/lib/encode/include/XLoad.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/veslibrary/ves_cpplibrary/src/lib/encode/include/XLoad.h b/veslibrary/ves_cpplibrary/src/lib/encode/include/XLoad.h
new file mode 100755
index 0000000..5966486
--- /dev/null
+++ b/veslibrary/ves_cpplibrary/src/lib/encode/include/XLoad.h
@@ -0,0 +1,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>;
+ }
+}
+ \ No newline at end of file