/Mercurial.Net/Gui/GuessGuiCommand.cs

# · C# · 18 lines · 10 code · 0 blank · 8 comment · 0 complexity · 653f188cd28d491ce11447518f0f0ca3 MD5 · raw file

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