TrackGit
TrackGitApp.h
Go to the documentation of this file.
1 
8 #ifndef _TRACKGIT_APP_H_
9 #define _TRACKGIT_APP_H_
10 
11 #include <map>
12 
13 #include <AppKit.h>
14 #include <SupportKit.h>
15 
16 class TrackGitWindow;
17 
18 
24 class TrackGitApp : public BApplication
25 {
29  map<BString, TrackGitWindow*> fRunningCommands;
30  public:
31  TrackGitApp();
32  virtual void MessageReceived(BMessage*);
33 };
34 
35 #endif
TrackGitApp()
TrackGitApp Constructor.
Definition: TrackGitApp.cpp:31
The TrackGit Application class.
Definition: TrackGitApp.h:24
map< BString, TrackGitWindow * > fRunningCommands
The map of running commands to their repo.
Definition: TrackGitApp.h:29
The TrackGit Window class.
virtual void MessageReceived(BMessage *)
The handler to receive messages.
Definition: TrackGitApp.cpp:45