blob: 91cc38d4906dc81ffb37064eb4b7d37e78bc55ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/***************************************************************
* Name: Guppies1_0App.h
* Purpose: Defines Application Class
* Author: Paul T. Oliver (nino.trullen@gmail.com)
* Created: 2012-11-13
* Copyright: Paul T. Oliver ()
* License:
**************************************************************/
#ifndef GUPPIES1_0APP_H
#define GUPPIES1_0APP_H
#include <wx/app.h>
class Guppies1_0App : public wxApp
{
public:
virtual bool OnInit();
};
#endif // GUPPIES1_0APP_H
|