Newer
Older
Import / research / qt-template-app / main.cpp
@John John on 29 Dec 2020 344 bytes bulk import from macbookpro checkouts
//
//  main.cpp
//  DescriptionHere
//
//  Created by John Ryland (jryland@xiaofrog.com) on 14/11/2017.
//  Copyright 2017 InvertedLogic. All rights reserved.
//
#include <QApplication>
#include <QWidget>

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

  QWidget w;
  w.resize(64,64);
  w.show();

  return app.exec();
}