package LDFM::MainController; use utf8; use warnings; use strict; use base 'Gtk2::GladeXML::Simple'; use Readonly; our $VERSION = '0.01'; sub new { my ($class,%params)=@_; my $self=$class->SUPER::new($params{glade_file}); return $self; } 1;