/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see cref="ZoomStateGroup"/> object from which to copy</param> public ZoomStateGroup(ZoomStateGroup rhs) : base(rhs.Type) { _stack = new ZoomStateStack(rhs._stack); }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see cref="ZoomStateGroup"/> object from which to copy</param> public ZoomStateGroup( ZoomStateGroup rhs ) : base(rhs.Type) { _stack = new ZoomStateStack( rhs._stack ); }