TrackGit
GitCommand.h
Go to the documentation of this file.
1 
8 #ifndef _GIT_COMMAND_H_
9 #define _GIT_COMMAND_H_
10 
11 #include <stddef.h>
12 
13 class TrackGitWindow;
14 
20 class GitCommand {
21  public:
25  virtual void Execute() = 0;
31  {
32  return NULL;
33  }
34 };
35 
36 #endif
virtual TrackGitWindow * GetWindow()
This is used to get pointer to the window (if any).
Definition: GitCommand.h:30
GitCommand Class.
Definition: GitCommand.h:20
The TrackGit Window class.
virtual void Execute()=0
This is where actual calls to libgit2 will go.