view src/wxwidgets-test.cpp @ 4373:14ea30a05e22

of-geometry: update to 3.0.0 * src/of-geometry.mk: update version, checksum * build_packages.m: update geometry version
author John D
date Mon, 03 Apr 2017 07:50:23 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <wx/wx.h>

class TestApp: public wxApp
{
private:
    bool OnInit()
    {
        wxFrame *frame = new wxFrame(0, -1, _("Hello, World!"));
        frame->Show(true);
        SetTopWindow(frame);
        return true;
    }
};

IMPLEMENT_APP(TestApp)