summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_cpplibrary/src/lib/encode/include/XKey.h
diff options
context:
space:
mode:
Diffstat (limited to 'veslibrary/ves_cpplibrary/src/lib/encode/include/XKey.h')
-rwxr-xr-xveslibrary/ves_cpplibrary/src/lib/encode/include/XKey.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/veslibrary/ves_cpplibrary/src/lib/encode/include/XKey.h b/veslibrary/ves_cpplibrary/src/lib/encode/include/XKey.h
new file mode 100755
index 0000000..5424bb3
--- /dev/null
+++ b/veslibrary/ves_cpplibrary/src/lib/encode/include/XKey.h
@@ -0,0 +1,27 @@
+#pragma once
+
+#include "XEvent.h"
+
+namespace vagt
+{
+ namespace encode
+ {
+ class XKey
+ {
+ public:
+ XKey(const XString& keyName);
+
+ virtual void setKeyValue(const XString& keyValue);
+ virtual void setKeyOrder(XInteger keyOrder);
+ virtual void setKeyName(const XString& keyName);
+
+ std::shared_ptr<XKey> imp_;
+
+ protected:
+ XKey();
+ };
+
+ using XArrayOfXKey = std::vector<XKey>;
+ }
+}
+ \ No newline at end of file