Initial version of BrowseRefsDlg
[TortoiseGit.git] / src / TortoiseProc / GitDiff.h
bloba2e5385c8eb5c54f2bae5d77868b4146267e9c1d
1 #pragma once
2 #include "TGitPath.h"
3 #include "GitStatus.h"
4 #include "Git.h"
6 class CGitDiff
8 public:
9 CGitDiff(void);
10 ~CGitDiff(void);
11 static int Parser(git_revnum_t &rev);
13 // Use two path to handle rename cases
14 static int Diff(CTGitPath * pPath1, CTGitPath *pPath2 ,git_revnum_t & rev1, git_revnum_t & rev2, bool blame=false, bool unified=false);
15 static int DiffNull(CTGitPath *pPath, git_revnum_t &rev1);