Nuclex.Support/Source/Tracking/SetProgression.cs

25 lines
608 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Nuclex.Support.Collections;
namespace Nuclex.Support.Tracking {
/// <summary>Forms a single progression from a set of progressions</summary>
/// <typeparam name="ProgressionType">Type of progressions to manage as a set</typeparam>
public class SetProgression<ProgressionType> : Progression
where ProgressionType : Progression {
// TODO
}
/*
public class SetOperation<OperationType> : Operation
where OperationType : OperationType
QueueOperation
*/
} // namespace Nuclex.Support.Tracking