/Mercurial.Net/Gui/GuessGuiCommand.cs
# · C# · 18 lines · 10 code · 0 blank · 8 comment · 0 complexity · 653f188cd28d491ce11447518f0f0ca3 MD5 · raw file
- namespace Mercurial.Gui
- {
- /// <summary>
- /// Implements the TortoiseHg "guess" command (<see href="http://tortoisehg.bitbucket.org/manual/2.0/guess.html#from-command-line"/>):
- /// Guess previous renames or copies.
- /// </summary>
- public sealed class GuessGuiCommand : GuiCommandBase<GuessGuiCommand>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="GuessGuiCommand"/> class.
- /// </summary>
- public GuessGuiCommand()
- : base("guess")
- {
- // Do nothing here
- }
- }
- }