Skeleton for the printerdemo

This commit is contained in:
Olivier Goffart 2020-08-04 10:11:02 +02:00
parent e4cd21efd6
commit 3becd69bc5
7 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#include "printerdemo.h"
#include <iostream>
int main()
{
static MainWindow printer_demo;
sixtyfps::ComponentWindow window;
window.run(&printer_demo);
}