view src/kaigo/Porori/include/main.h @ 44:b50f2a581cf8

bug fix.
author pyon@macmini
date Tue, 17 Mar 2020 18:29:20 +0900
parents 34a474fb83c3
children
line wrap: on
line source

// Filename   : main.h
// Last Change: 2016-12-01 –Ø 18:02:02.
//
#include <wx/wx.h>

// private classes
// Define a new application type, each program should derive a class from wxApp
class MyApp : public wxApp
{
    DECLARE_CLASS( MyApp )
public:
    MyApp();
    ~MyApp();

    virtual bool OnInit();
    virtual int  OnExit();
};

DECLARE_APP(MyApp)