diff options
Diffstat (limited to 'lib/LDFM')
-rw-r--r-- | lib/LDFM/MainController.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/LDFM/MainController.pm b/lib/LDFM/MainController.pm index a9534e0..780a282 100644 --- a/lib/LDFM/MainController.pm +++ b/lib/LDFM/MainController.pm @@ -7,4 +7,12 @@ use Readonly; our $VERSION = '0.01'; +sub new { + my ($class,%params)=@_; + + my $self=$class->SUPER::new($params{glade_file}); + + return $self; +} + 1; |