f38a0bc1ea
git-svn-id: file:///srv/devel/repo-conversion/nusu@10 d2e56fa2-650e-0410-a79f-9358c0239efd
16 lines
390 B
C#
16 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Nuclex.Support.Tracking {
|
|
|
|
/// <summary>Base class for observable operations running in the background</summary>
|
|
public abstract class Operation : Progression {
|
|
|
|
/// <summary>Executes the operation</summary>
|
|
public abstract void Execute();
|
|
|
|
}
|
|
|
|
} // namespace Nuclex.Support.Tracking
|