Files
SabreTools/RombaSharp/Features/Cancel.cs

28 lines
772 B
C#
Raw Normal View History

2020-08-01 13:25:32 -07:00
using System.Collections.Generic;
2020-12-07 13:57:26 -08:00
using SabreTools.Help;
2020-08-01 13:25:32 -07:00
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";
2020-12-07 13:57:26 -08:00
_featureType = ParameterType.Flag;
2020-08-01 13:25:32 -07:00
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");
2020-08-01 13:25:32 -07:00
}
}
}