1 /***************************************************************
2  * Name:      wxGuitarApp.h
3  * Purpose:   Defines Application Class
4  * Author:    Ivnish (INDT) (indt@mail.ru)
5  * Created:   2009-07-21
6  * Copyright: (c) 2009 Ivnish (INDT)
7  * License:   GPLv3
8  **************************************************************/
9 
10 #ifndef WXGUITARAPP_H
11 #define WXGUITARAPP_H
12 
13 #include <wx/app.h>
14 
15 class wxGuitarApp : public wxApp
16 {
17     public:
18         virtual bool OnInit();
19 };
20 
21 #endif // WXGUITARAPP_H
22