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

28 lines
756 B
C#

using System.Collections.Generic;
using SabreTools.Help;
namespace RombaSharp.Features
{
internal class Memstats : BaseFeature
{
public const string Value = "Memstats";
public Memstats()
{
Name = Value;
Flags = new List<string>() { "memstats" };
Description = "Prints memory stats.";
_featureType = ParameterType.Flag;
LongDescription = "Print memory stats.";
Features = new Dictionary<string, Feature>();
}
public override void ProcessFeatures(Dictionary<string, Feature> features)
{
base.ProcessFeatures(features);
logger.User("This feature is not yet implemented: memstats");
}
}
}