/Mercurial.Net/Gui/ShelveGuiCommand.cs

# · C# · 18 lines · 10 code · 0 blank · 8 comment · 0 complexity · 59464a08ef480811d467535158b68bb3 MD5 · raw file

  1. namespace Mercurial.Gui
  2. {
  3. /// <summary>
  4. /// Implements the TortoiseHg "shelve" command (<see href="http://tortoisehg.bitbucket.org/manual/2.0/shelve.html#from-command-line"/>):
  5. /// Shelve/unshelve tool.
  6. /// </summary>
  7. public sealed class ShelveGuiCommand : GuiCommandBase<ShelveGuiCommand>
  8. {
  9. /// <summary>
  10. /// Initializes a new instance of the <see cref="ShelveGuiCommand"/> class.
  11. /// </summary>
  12. public ShelveGuiCommand()
  13. : base("shelve")
  14. {
  15. // Do nothing here
  16. }
  17. }
  18. }