Files
SabreTools/RombaSharp/Features/Progress.cs
2020-12-07 13:57:26 -08:00

28 lines
813 B
C#

using System.Collections.Generic;
using SabreTools.Help;
namespace RombaSharp.Features
{
internal class Progress : BaseFeature
{
public const string Value = "Progress";
public Progress()
{
Name = Value;
Flags = new List<string>() { "progress" };
Description = "Shows progress of the currently running command.";
_featureType = ParameterType.Flag;
LongDescription = "Shows progress of the currently running command.";
Features = new Dictionary<string, Feature>();
}
public override void ProcessFeatures(Dictionary<string, Feature> features)
{
base.ProcessFeatures(features);
logger.User("This feature is not yet implemented: progress");
}
}
}