using System; using System.Collections.Generic; using System.Text; namespace Nuclex.Support.Tracking { /// Base class for observable operations running in the background public abstract class Operation : Progression { /// Executes the operation public abstract void Execute(); } } // namespace Nuclex.Support.Tracking