view src/main.cpp @ 3:d3e201c48ff8 draft default tip

bug fix.
author pyon
date Wed, 29 Sep 2021 22:04:51 +0900
parents c0f76f8e67fa
children
line wrap: on
line source

// Filename   : main.cpp
// Last Change: 2021-08-27 金 09:12:55.
//
#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;
}