OSDN Git Service

Fix Email patch body show subject problem
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / GitDiff.h
1 #pragma once\r
2 #include "TGitPath.h"\r
3 #include "GitStatus.h"\r
4 #include "Git.h"\r
5 \r
6 class CGitDiff\r
7 {\r
8 public:\r
9         CGitDiff(void);\r
10         ~CGitDiff(void);\r
11         static int Parser(git_revnum_t &rev);\r
12 \r
13         // Use two path to handle rename cases\r
14         static int Diff(CTGitPath * pPath1, CTGitPath *pPath2 ,git_revnum_t & rev1, git_revnum_t & rev2, bool blame=false, bool unified=false);\r
15         static int DiffNull(CTGitPath *pPath, git_revnum_t &rev1);\r
16         static int StartConflictEditor(CTGitPath* filepath);\r
17 };\r