File: main.cpp

package info (click to toggle)
qcustomplot 2.1.0%2Bdfsg1-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 9,348 kB
  • sloc: cpp: 25,420; sh: 180; makefile: 23
file content (11 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
  QApplication a(argc, argv);
  MainWindow w;
  w.show();
  
  return a.exec();
}