mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-01 12:24:16 +00:00
Skeleton for a TODO app
This commit is contained in:
parent
16f5cf42e3
commit
e9b63552a7
8 changed files with 194 additions and 0 deletions
16
examples/todo/cpp/main.cpp
Normal file
16
examples/todo/cpp/main.cpp
Normal 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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue