view main.h @ 1:254045a265e0 default tip

Fix Makefile.
author pyon@macmini
date Fri, 25 Apr 2014 06:02:21 +0900
parents 6235b9a84d53
children
line wrap: on
line source

// Filename   : main.h
// Last Change: 15-Jan-2014.
//
#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)