Fixed issue #3307: Abort Merge on a single file always results in a parameter error...
[TortoiseGit.git] / src / TortoiseProc / ProgressCommands / ResetProgressCommand.h
blob9c3a4222b09b8d4cd106f5a3f5357529fa5c6131
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2013-2014 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "GitProgressList.h"
21 class ResetProgressCommand : public ProgressCommand
23 private:
24 CString m_revision;
25 int m_resetType;
27 public:
28 ResetProgressCommand()
29 : m_resetType(0)
32 void SetRevision(const CString& revision) { m_revision = revision; }
33 void SetResetType(int resetType){ m_resetType = resetType; }
34 virtual bool Run(CGitProgressList* list, CString& sWindowTitle, int& m_itemCountTotal, int& m_itemCount) override;