BT-MatML-Editor 0.1.4
Editor for the MatML 3.1 XML Schema
BT_MatML_App.h
Go to the documentation of this file.
1
10#ifndef __BT_MatML_App_H
11#define __BT_MatML_App_H
12
13#include <wx/wx.h>
14// For compilers that support precompilation, includes "wx/wx.h".
15#include "wx/wxprec.h"
16
17#ifdef __BORLANDC__
18#pragma hdrstop
19#endif
20
21#ifndef WX_PRECOMP
22#include "wx/wx.h"
23#endif
24
25#ifdef __WIN32__
26 // this is not supported by native control
27#define NO_VARIABLE_HEIGHT
28#endif
29
30//#include "stdafx.h"
31
39namespace bellshire{
40
45 class BT_MatML_App : public wxApp
46 {
47 public:
49 virtual ~BT_MatML_App();
50 virtual bool OnInit();
51 virtual int OnExit();
52 };
53
54 DECLARE_APP(BT_MatML_App)
56}//namespace bellshire
57#endif
Defines the entry point for the console application.
Definition: BT_MatML_App.h:46
virtual int OnExit()
Definition: BT_MatML_App.cpp:44
virtual bool OnInit()
Definition: BT_MatML_App.cpp:27
virtual ~BT_MatML_App()
Definition: BT_MatML_App.cpp:23
BT_MatML_App()
Definition: BT_MatML_App.cpp:19
Contains the GUI and GUI associated classes. OnInit() calls the creation of the MaterialFrame GUI
Definition: BT_MatML_App.h:39