/Mercurial.Net/Gui/ForgetGuiCommand.cs
# · C# · 17 lines · 10 code · 0 blank · 7 comment · 0 complexity · 62f88880f8bb8178051788a1a7027625 MD5 · raw file
- namespace Mercurial.Gui
- {
- /// <summary>
- /// Implements the TortoiseHg "forget" command:
- /// Show file status viewer in "forget mode".
- /// </summary>
- public sealed class ForgetGuiCommand : FilesBasedGuiCommandBase<ForgetGuiCommand>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="ForgetGuiCommand"/> class.
- /// </summary>
- public ForgetGuiCommand()
- : base("forget")
- {
- }
- }
- }