mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
29 lines
801 B
C#
29 lines
801 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
using SabreTools.Library.Data;
|
|||
|
|
using SabreTools.Library.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 = FeatureType.Flag;
|
|||
|
|
LongDescription = "Print memory stats.";
|
|||
|
|
Features = new Dictionary<string, Feature>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public override void ProcessFeatures(Dictionary<string, Feature> features)
|
|||
|
|
{
|
|||
|
|
base.ProcessFeatures(features);
|
|||
|
|
Globals.Logger.User("This feature is not yet implemented: memstats");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|