| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //------------------------------------------------------------------------------
- // <auto-generated />
- //
- // This file was automatically generated by SWIG (http://www.swig.org).
- // Version 4.0.2
- //
- // Do not make changes to this file unless you know what you are doing--modify
- // the SWIG interface file instead.
- //------------------------------------------------------------------------------
- public class ActionPoseDesc : global::System.IDisposable {
- private global::System.Runtime.InteropServices.HandleRef swigCPtr;
- protected bool swigCMemOwn;
- internal ActionPoseDesc(global::System.IntPtr cPtr, bool cMemoryOwn) {
- swigCMemOwn = cMemoryOwn;
- swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
- }
- internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ActionPoseDesc obj) {
- return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
- }
- ~ActionPoseDesc() {
- Dispose(false);
- }
- public void Dispose() {
- Dispose(true);
- global::System.GC.SuppressFinalize(this);
- }
- protected virtual void Dispose(bool disposing) {
- lock(this) {
- if (swigCPtr.Handle != global::System.IntPtr.Zero) {
- if (swigCMemOwn) {
- swigCMemOwn = false;
- GestureEstimatePINVOKE.delete_ActionPoseDesc(swigCPtr);
- }
- swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
- }
- }
- }
- public ActionPoseEnum action_pose {
- set {
- GestureEstimatePINVOKE.ActionPoseDesc_action_pose_set(swigCPtr, (int)value);
- }
- get {
- ActionPoseEnum ret = (ActionPoseEnum)GestureEstimatePINVOKE.ActionPoseDesc_action_pose_get(swigCPtr);
- return ret;
- }
- }
- public ActionPoseDesc() : this(GestureEstimatePINVOKE.new_ActionPoseDesc__SWIG_0(), true) {
- }
- public ActionPoseDesc(ActionPoseEnum pose) : this(GestureEstimatePINVOKE.new_ActionPoseDesc__SWIG_1((int)pose), true) {
- }
- public bool is_valid() {
- bool ret = GestureEstimatePINVOKE.ActionPoseDesc_is_valid(swigCPtr);
- return ret;
- }
- public string to_string() {
- string ret = GestureEstimatePINVOKE.ActionPoseDesc_to_string(swigCPtr);
- return ret;
- }
- }
|