forked from openigtlink/OpenIGTLinkSimulator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
27 lines (17 loc) · 721 Bytes
/
main.cpp
File metadata and controls
27 lines (17 loc) · 721 Bytes
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
/*=========================================================================
Program: OpenIGTLink Simulator
Language: C++
Copyright (c) Brigham and Women's Hospital. All rights reserved.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include <QApplication>
#include "OpenIGTLinkSimulatorApp.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
OpenIGTLinkSimulatorApp *window = new OpenIGTLinkSimulatorApp;
window->show();
return app.exec();
}