Ported MuSRFit GUI to qt4. May need more debugging.

This commit is contained in:
2017-03-23 17:24:19 +01:00
parent 40c54fe195
commit 7f16918007
15 changed files with 10658 additions and 0 deletions

17
src/external/MuSRFitGUI/MuSRFit4.pl vendored Executable file
View 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();