mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
28 lines
772 B
C#
28 lines
772 B
C#
using System.Collections.Generic;
|
|
|
|
using SabreTools.Help;
|
|
|
|
namespace RombaSharp.Features
|
|
{
|
|
internal class Cancel : BaseFeature
|
|
{
|
|
public const string Value = "Cancel";
|
|
|
|
public Cancel()
|
|
{
|
|
Name = Value;
|
|
Flags = new List<string>() { "cancel" };
|
|
Description = "Cancels current long-running job";
|
|
_featureType = ParameterType.Flag;
|
|
LongDescription = "Cancels current long-running job.";
|
|
Features = new Dictionary<string, Feature>();
|
|
}
|
|
|
|
public override void ProcessFeatures(Dictionary<string, Feature> features)
|
|
{
|
|
base.ProcessFeatures(features);
|
|
logger.User("This feature is not yet implemented: cancel");
|
|
}
|
|
}
|
|
}
|