}         // Setup

        // ----------------------------------------------------------------------
        public override bool IsSamePeriod(ITimePeriod test)
        {
            IPlayTimeRange playTimeRange = (IPlayTimeRange)test;

            return(base.IsSamePeriod(playTimeRange) && direction == playTimeRange.Direction);
        }         // IsSamePeriod
예제 #2
0
 // ----------------------------------------------------------------------
 public PlayTimeRange( IPlayTimeRange copy )
     : base(copy)
 {
     direction = copy.Direction;
 }
        }         // PlayTimeRange

        // ----------------------------------------------------------------------
        public PlayTimeRange(IPlayTimeRange copy) :
            base(copy)
        {
            direction = copy.Direction;
        }         // PlayTimeRange