diff src/kaigo/horori/mover/include/main.h @ 45:20b42e2deae1

add alloc, (new)mover, merger & (new)searcher.
author pyon@macmini
date Thu, 16 Apr 2020 20:59:35 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/kaigo/horori/mover/include/main.h	Thu Apr 16 20:59:35 2020 +0900
@@ -0,0 +1,24 @@
+// 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)
+