Ported MuSRFit GUI to qt4. May need more debugging.
This commit is contained in:
17
src/external/MuSRFitGUI/MuSRFit4.pl
vendored
Executable file
17
src/external/MuSRFitGUI/MuSRFit4.pl
vendored
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use QtCore4;
|
||||
use QtGui4;
|
||||
use MuSRFit4;
|
||||
|
||||
sub main {
|
||||
my $app = Qt::Application(\@ARGV);
|
||||
my $musrfit = MuSRFit4();
|
||||
$musrfit->show();
|
||||
exit $app->exec();
|
||||
}
|
||||
|
||||
main();
|
||||
Reference in New Issue
Block a user