IVS-calculator
Loading...
Searching...
No Matches
calc.cpp
Go to the documentation of this file.
1#include<iostream>
2#include <QApplication>
3#include "gui/gui.h"
4
5int main(int argc, char *argv[]) {
6 QApplication app(argc,argv);
7 Gui window;
8 window.resize(300,400);
9 window.show();
10 return app.exec();
11}
Main window class for the calculator GUI.
Definition gui.h:26
Library for the calculator GUI.
int main()
Definition profiling.cpp:7