Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > d38b97c69a3fd47b351add70f89a7ab5 > files > 1078

perl-qt4-examples-4.14.3-1.mga5.noarch.rpm

#!/usr/bin/perl

use strict;
use warnings;

use QtCore4;
use QtGui4;
use SortingBox;

sub main {
    my $app = Qt::Application( \@ARGV );
    srand(Qt::Time(0,0,0)->secsTo(Qt::Time::currentTime()));
    my $sortingBox = SortingBox();
    $sortingBox->show();
    return $app->exec();
}

exit main();