view src/main.cpp @ 1:13e80a745ef0 draft

beta2 release.
author pyon <pyon@macmini>
date Tue, 24 Aug 2021 21:30:47 +0900
parents 520044113ef0
children c0f76f8e67fa
line wrap: on
line source

// Filename   : main.cpp
// Last Change: 2021-08-18 水 15:48:13.
//
#include "main.h"
#include "iklist.h"

IMPLEMENT_APP(MyApp)

IMPLEMENT_CLASS(MyApp, wxApp)

MyApp::MyApp()
{
}
MyApp::~MyApp()
{
}

bool MyApp::OnInit()
{
    if (!wxApp::OnInit()) return false;

	MainFrame *frame = new MainFrame(NULL, wxID_ANY, wxT("大曲仙北医療・介護事業所一覧 - 2021.07版"), wxDefaultPosition, wxSize(800, 600), wxDEFAULT_FRAME_STYLE);
	frame->Show(true);
	frame->Raise();

    return true;
}

int MyApp::OnExit()
{
    return 0;
}