Example #1
0
 public bool Equals(BoundaryContext other)
 {
     if (other == null)
     {
         return(false);
     }
     return(m_bdryDef.Equals(other.m_bdryDef));
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Boundary"/> class from a boundary
 /// context.
 /// </summary>
 /// <param name="ctxt">The boundary context.</param>
 public Boundary(BoundaryContext ctxt)
 {
     m_bdryDef = ctxt.BoundaryDefinition;
 }
Example #3
0
 /// <summary>
 /// Copy constructor.
 /// </summary>
 /// <param name="ctxt">The boundary context.</param>
 public BoundaryContext(BoundaryContext ctxt)
     : base(ctxt)
 {
     m_bdryDef = ctxt.m_bdryDef;
 }
Example #4
0
		/// <summary>
		/// Initializes a new instance of the <see cref="Boundary"/> class from a boundary
		/// context.
		/// </summary>
		/// <param name="ctxt">The boundary context.</param>
		public Boundary(BoundaryContext ctxt)
		{
			m_bdryDef = ctxt.BoundaryDefinition;
		}
Example #5
0
		public bool Equals(BoundaryContext other)
		{
			if (other == null)
				return false;
			return m_bdryDef.Equals(other.m_bdryDef);
		}
Example #6
0
		/// <summary>
		/// Copy constructor.
		/// </summary>
		/// <param name="ctxt">The boundary context.</param>
		public BoundaryContext(BoundaryContext ctxt)
			: base(ctxt)
		{
			m_bdryDef = ctxt.m_bdryDef;
		}