PageRenderTime 1603ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/Mercurial.Net/Gui/ForgetGuiCommand.cs

#
C# | 17 lines | 10 code | 0 blank | 7 comment | 0 complexity | 62f88880f8bb8178051788a1a7027625 MD5 | raw file
Possible License(s): BSD-3-Clause, GPL-2.0
  1. namespace Mercurial.Gui
  2. {
  3. /// <summary>
  4. /// Implements the TortoiseHg "forget" command:
  5. /// Show file status viewer in "forget mode".
  6. /// </summary>
  7. public sealed class ForgetGuiCommand : FilesBasedGuiCommandBase<ForgetGuiCommand>
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="ForgetGuiCommand"/> class.
  11. /// </summary>
  12. public ForgetGuiCommand()
  13. : base("forget")
  14. {
  15. }
  16. }
  17. }