Skeleton for a TODO app

This commit is contained in:
Olivier Goffart 2020-09-07 14:13:34 +02:00
parent 16f5cf42e3
commit e9b63552a7
8 changed files with 194 additions and 0 deletions

View file

@ -0,0 +1,16 @@
/* LICENSE BEGIN
This file is part of the SixtyFPS Project -- https://sixtyfps.io
Copyright (c) 2020 Olivier Goffart <olivier.goffart@sixtyfps.io>
Copyright (c) 2020 Simon Hausmann <simon.hausmann@sixtyfps.io>
SPDX-License-Identifier: GPL-3.0-only
This file is also available under commercial licensing terms.
Please contact info@sixtyfps.io for more information.
LICENSE END */
#include "todo.h"
int main()
{
static MainWindow demo;
demo.run();
}