TrackGit
ShowConflicts.h
Go to the documentation of this file.
1 
8 #ifndef _SHOW_CONFLICTS_H_
9 #define _SHOW_CONFLICTS_H_
10 
11 #include "GitCommand.h"
12 
13 #include <SupportKit.h>
14 
18 class ShowConflicts : public GitCommand
19 {
23  BString fRepoPath;
24 public:
25  ShowConflicts(BString);
26  virtual void Execute();
27 };
28 
29 #endif
BString fRepoPath
The repo path where ShowConflicts option is selected.
Definition: ShowConflicts.h:23
GitCommand Class.
Definition: GitCommand.h:20
virtual void Execute()
ShowConflicts command excution.
ShowConflicts(BString)
ShowConflicts command constructor.
Header file of GitCommand.
ShowConflicts command Class.
Definition: ShowConflicts.h:18