#include <iostream>
#include <QApplication>
#include "gui/gui.h"
Go to the source code of this file.
|
| int | main (int argc, char *argv[]) |
| |
◆ main()
| int main |
( |
int | argc, |
|
|
char * | argv[] ) |
Definition at line 5 of file calc.cpp.
5 {
6 QApplication app(argc,argv);
8 window.resize(300,400);
9 window.show();
10 return app.exec();
11}
Main window class for the calculator GUI.