Logo white

Peter M. Groen / CalcPrimes

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • CalcPrimes
  • src
  • main.cpp
  • Building the GUI
    13c49262
    Peter M. Groen authored
    2022-10-01 16:17:46 +0200  
    Browse Code ยป
main.cpp 194 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <QApplication>

#include "calcprime_form.h"

int main( int argc, char* argv[] )
{
    QApplication oApp( argc, argv );

    CalcPrimeForm oForm;
    oForm.show();

     oApp.exec();
}