diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 19:27:35 +0100 | 
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 19:27:49 +0100 | 
| commit | 17909d029c6a8872b2fddf4e171d7925bbbe9c5c (patch) | |
| tree | cbb08af84cd68d24acc362d593a2048b0fa79689 /Guppies1_0App.h | |
Diffstat (limited to 'Guppies1_0App.h')
| -rw-r--r-- | Guppies1_0App.h | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/Guppies1_0App.h b/Guppies1_0App.h new file mode 100644 index 0000000..91cc38d --- /dev/null +++ b/Guppies1_0App.h @@ -0,0 +1,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 | 
