view horori/alloc/main.h @ 5:519d6fd0bfd9 draft

searcher: bug fix. fcgo: new feature.
author pyon <pyon@macmini>
date Tue, 15 Jun 2021 18:32:28 +0900
parents aaaa401818a1
children
line wrap: on
line source

// Filename   : main.h
// Last Change: 2020-03-12 –Ø 13:37:37.
//
#pragma once

#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)
	private:

	public:
		MyApp();
		~MyApp();

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

DECLARE_APP(MyApp)