BlockIPPlatform
 All Classes Files Functions Variables
MyProcess.h
Go to the documentation of this file.
1 
6 #ifndef __MyProcess__
7 #define __MyProcess__
8 
9 #include <wx/process.h>
10 
11 class MainFrame;
12 
14 class MyProcess : public wxProcess
15 {
16  public:
17  MyProcess(MainFrame *frame);
18  ~MyProcess();
19 
20  protected:
21  void OnTerminate(int pid, int status);
22 
23  private:
24  MainFrame *frame;
25 };
26 
27 #endif // __MainFrame__