Hi,
Wx::SimpleApp just saves you having to define a package that inherits from
Wx::App.
The Wx::SimpleApp code is just three lines.
package Wx::SimpleApp;
@Wx::SimpleApp::ISA = qw(Wx::App);
sub OnInit { 1 }
As far as I am aware, that is it.
Regards
Mark
Octavian Rasnita wrote:
> Hi,
>
> Is using the module Wx::SimpleApp just a way of creating an application
> without needing to define a "MyApp: package and a "MyFrame" package?
> Is the result application the same? Or it involves other
> advantages/disadvantages?
>
> I have searched for Wx::Simple app in the Wx Widgets chm manual, but I
> couldn't find anything. Where can I find more information about it?
>
> Thank you.
>
> Octavian
>