I am following a tutorial at
http://www.ibm.com/developerworks/library/l-wxwidgets/index.html
It says put the macro code somewhere in your code:
BEGIN_EVENT_TABLE(DemoFrame, wxFrame)
EVT_BUTTON(wxID_CLOSE, DemoFrame::OnButtonPress)
END_EVENT_TABLE()
IMPLEMENT_APP(DemoApp)
.. so where do I put it? Somewhere in my implementation, .cpp file or
somewhere in the header, .h file? Where abouts?