Exemplo n.º 1
0
 public PBool(PBool other) : this(PapillonPINVOKE.new_PBool__SWIG_2(PBool.getCPtr(other)), true)
 {
     if (PapillonPINVOKE.SWIGPendingException.Pending)
     {
         throw PapillonPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Exemplo n.º 2
0
 internal override void RemoveChild(Node child)
 {
     if (_bool_ == child)
     {
         _bool_ = null;
         return;
     }
 }
Exemplo n.º 3
0
        public void SetBool(PBool node)
        {
            if (_bool_ != null)
            {
                _bool_.Parent(null);
            }

            if (node != null)
            {
                if (node.Parent() != null)
                {
                    node.Parent().RemoveChild(node);
                }

                node.Parent(this);
            }

            _bool_ = node;
        }
Exemplo n.º 4
0
 public ABooleanConstExp(
         PBool _bool_
 )
 {
     SetBool(_bool_);
 }
Exemplo n.º 5
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PBool obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }