-
Notifications
You must be signed in to change notification settings - Fork 18
/
main.cpp
61 lines (51 loc) · 2.16 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* Copyright (C) Tim van Mourik, 2014-2016
* Copyright (C) Tim van Mourik, 2017, DCCN
* All rights reserved
*
* This program has been created from scratch, but was inspired by the following packages:
*
* Mipav, http://mipav.cit.nih.gov/
* Loni Pipeline, http://pipeline.bmap.ucla.edu/
* Taverna, http://www.taverna.org.uk/
* Blender, http://www.blender.org/
* Stanislaw Adaszewski's QNodesEditor, http://algoholic.eu/qnodeseditor-qt-nodesports-based-data-processing-flow-editor
* Open Assembler, http://openassembler.wordpress.com/
* Kiwi, https://github.com/nical/kiwi
* QT Node Editor, http://nukengine.com/qt-node-editor/
* Lynx, http://safakoner.webfactional.com/rnd/tool/2/
* Nipype, http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3159964/
*
* To my knowledge non of these ideas or examples are patented or need to be referenced explicitly in the way I have used them.
*/
/* Copyright (C) Tim van Mourik, 2014-2016
Copyright (C) Tim van Mourik, 2017, DCCN
All rights reserved
This file is part of the Porcupine pipeline tool, see
https://github.com/TimVanMourik/Porcupine for the documentation and
details.
This toolbox is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This toolbox is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with the fmri analysis toolbox. If not, see
<http://www.gnu.org/licenses/>.
*/
#include "MainWindow.hpp"
#include <QApplication>
int main(
int argc,
char *argv[]
)
{
QApplication app(argc, argv);
MainWindow w;
w.showMaximized();
w.setWindowTitle("PORcupine Creates Ur PipelINE © Tim van Mourik");
w.setWindowIcon(QIcon("porcupine.icns"));
return app.exec();
}