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
    758af182
    Peter M. Groen authored
    2022-10-01 23:51:51 +0200  
    Browse Code ยป
main.cpp 174 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13
#include <QApplication>

#include "calcprime.h"

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

    CalcPrime   ocalcPrime;

     oApp.exec();
}