Extended .NET SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
OdDbGraphStack.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated />
3//
4// This file was automatically generated by SWIG (http://www.swig.org).
5// Version 4.0.2
6//
7// Do not make changes to this file unless you know what you are doing--modify
8// the SWIG interface file instead.
9//------------------------------------------------------------------------------
10
11namespace Teigha.TD {
12
13using System;
14using System.Runtime.InteropServices;
15using Teigha.Core;
16
17public class OdDbGraphStack : global::System.IDisposable {
18 private Object locker = new Object();
19 private HandleRef swigCPtr;
20 protected bool swigCMemOwn;
21 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
22 public OdDbGraphStack(IntPtr cPtr, bool cMemoryOwn) {
23 swigCMemOwn = cMemoryOwn;
24 swigCPtr = new HandleRef(this, cPtr);
25 }
26 [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
27 public static HandleRef getCPtr(OdDbGraphStack obj) {
28 return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
29 }
30
32 Dispose(false);
33 }
34
35 public void Dispose() {
36 Dispose(true);
37 global::System.GC.SuppressFinalize(this);
38 }
39
40 protected virtual void Dispose(bool disposing) {
41 lock(this) {
42 if (swigCPtr.Handle != global::System.IntPtr.Zero) {
43 if (swigCMemOwn) {
44 swigCMemOwn = false;
46 }
47 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
48 }
49 }
50 }
51
52 public OdDbGraphStack(int initPhysicalLength, int initGrowLength) : this(TD_DbPINVOKE.new_OdDbGraphStack__SWIG_0(initPhysicalLength, initGrowLength), true) {
54 }
55
56 public OdDbGraphStack(int initPhysicalLength) : this(TD_DbPINVOKE.new_OdDbGraphStack__SWIG_1(initPhysicalLength), true) {
58 }
59
60 public OdDbGraphStack() : this(TD_DbPINVOKE.new_OdDbGraphStack__SWIG_2(), true) {
62 }
63
64 public void push(OdDbGraphNode pNode) {
67 }
68
69 public OdDbGraphNode pop() {
70 MemoryManager mMan = MemoryManager.GetMemoryManager();
71 MemoryTransaction mTrans = mMan.GetCurrentTransaction(); // MemoryTransaction #34
72 IntPtr ptr = TD_DbPINVOKE.OdDbGraphStack_pop(swigCPtr);
73
74 OdDbGraphNode ret = null;
75 if (null != mTrans)
76 {
77 mTrans.AddObject((OdDbGraphNode)Teigha.Core.Helpers.odrxCreateObjectInternal(ptr, true));
78 ret = (OdDbGraphNode)Teigha.Core.Helpers.odrxCreateObjectInternal(ptr, false);
79 }
80 else
81 {
82 ret = (OdDbGraphNode)Teigha.Core.Helpers.odrxCreateObjectInternal(ptr, true);
83 }
84
86 return ret;
87}
88
89 public OdDbGraphNode top() {
90 OdDbGraphNode ret = (OdDbGraphNode)Teigha.Core.Helpers.odrxCreateObjectInternalUniversal(typeof(OdDbGraphNode),TD_DbPINVOKE.OdDbGraphStack_top(swigCPtr),false); /*createInt 3_2*/
91
93 return ret;
94}
95
96 public bool isEmpty() {
97 bool ret = TD_DbPINVOKE.OdDbGraphStack_isEmpty(swigCPtr);
99 return ret;
100 }
101
102}
103
104}
static HandleRef getCPtr(OdDbGraphNode obj)
static HandleRef getCPtr(OdDbGraphStack obj)
OdDbGraphStack(int initPhysicalLength, int initGrowLength)
void push(OdDbGraphNode pNode)
OdDbGraphStack(IntPtr cPtr, bool cMemoryOwn)
OdDbGraphStack(int initPhysicalLength)
virtual void Dispose(bool disposing)
static global::System.Exception Retrieve()
static void OdDbGraphStack_push(global::System.Runtime.InteropServices.HandleRef jarg1, HandleRef jarg2)
static bool OdDbGraphStack_isEmpty(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr OdDbGraphStack_pop(global::System.Runtime.InteropServices.HandleRef jarg1)
static void delete_OdDbGraphStack(global::System.Runtime.InteropServices.HandleRef jarg1)
static IntPtr OdDbGraphStack_top(global::System.Runtime.InteropServices.HandleRef jarg1)