Updated FSF address in all files. Fixes ticket:51
[debian/gnuradio] / ezdop / src / host / hunter / src / hunterapp.h
1 /*
2  Copyright 2006 Johnathan Corgan.
3  
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License version 2
6  as published by the Free Software Foundation.
7  
8  This software is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  GNU General Public License for more details.
12  
13  You should have received a copy of the GNU General Public License
14  along with GNU Radio; see the file COPYING.  If not, write to
15  the Free Software Foundation, Inc., 51 Franklin Street,
16  Boston, MA 02110-1301, USA.
17 */
18
19 #ifndef __HUNTER_APP__
20 #define __HUNTER_APP__
21
22 // wxWidgets includes
23 #include <wx/app.h>
24
25 // Forward declarations
26 class wxLog;
27
28 class Hunter : public wxApp
29 {
30 public:
31         // Called on application startup
32         virtual bool OnInit();
33
34         // Called by system when application is closing but
35         // before wxWidgets is finished
36         virtual int OnExit();
37         
38 private:
39         // Active log target
40         wxLog *m_logger;
41 };
42
43 #endif