Revision 2eb54f9d GazeTkHub/Hub/src/main.cpp
| GazeTkHub/Hub/src/main.cpp | ||
|---|---|---|
| 1 | 1 |
#include <iostream> |
| 2 |
#include <QApplication> |
|
| 3 |
#include "mainwindow.h" |
|
| 2 | 4 |
|
| 3 | 5 |
using namespace std; |
| 4 | 6 |
|
| 5 |
void main( ) {
|
|
| 6 |
cout << "Hello World!" << endl; |
|
| 7 |
int main( int argc, char** argv ) {
|
|
| 8 |
QApplication app(argc, argv); |
|
| 9 |
MainWindow window; |
|
| 10 |
window.show(); |
|
| 11 |
return app.exec(); |
|
| 7 | 12 |
} |
Also available in: Unified diff