GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
main.cpp
Go to the documentation of this file.
1 /* Copyright (C) 2008, 2013 e_k (e_k@users.sourceforge.net)
2 
3  This library is free software: you can redistribute it and/or
4  modify it under the terms of the GNU Library General Public
5  License as published by the Free Software Foundation; either
6  version 2 of the License, or (at your option) any later version.
7 
8  This library is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  Library General Public License for more details.
12 
13  You should have received a copy of the GNU Library General Public License
14  along with this library; see the file COPYING.LIB. If not, write to
15  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16  Boston, MA 02110-1301, USA.
17 */
18 
19 
20 #include <QtCore>
21 #include <QtGui>
22 #include <QApplication>
23 
24 #include "QTerminal.h"
25 
26 int main(int argc, char *argv[])
27 {
28  QApplication app(argc, argv);
29  QMainWindow *mainWindow = new QMainWindow();
30 
31  QTerminal *terminal = new QTerminal();
32 
33  mainWindow->setCentralWidget(terminal);
34  mainWindow->resize(600, 400);
35 
36  mainWindow->show();
37  return app.exec();
38 }
int argc
Definition: load-save.cc:646
string_vector argv
Definition: load-save.cc:648
int main(int argc, char *argv[])
Definition: main.cpp:26