| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- //------------------------------------------------------------------------------
- // <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 ArmDownResult : global::System.IDisposable {
- private global::System.Runtime.InteropServices.HandleRef swigCPtr;
- protected bool swigCMemOwn;
- internal ArmDownResult(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(ArmDownResult obj) {
- return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
- }
- ~ArmDownResult() {
- 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_ArmDownResult(swigCPtr);
- }
- swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
- }
- }
- }
- public int left {
- set {
- GestureEstimatePINVOKE.ArmDownResult_left_set(swigCPtr, value);
- }
- get {
- int ret = GestureEstimatePINVOKE.ArmDownResult_left_get(swigCPtr);
- return ret;
- }
- }
- public int right {
- set {
- GestureEstimatePINVOKE.ArmDownResult_right_set(swigCPtr, value);
- }
- get {
- int ret = GestureEstimatePINVOKE.ArmDownResult_right_get(swigCPtr);
- return ret;
- }
- }
- public ArmDownResult() : this(GestureEstimatePINVOKE.new_ArmDownResult(), true) {
- }
- }
|