mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-27 20:42:25 +00:00
12 lines
No EOL
354 B
C++
12 lines
No EOL
354 B
C++
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.2 OR LicenseRef-Slint-commercial
|
|
|
|
#include "logic.h"
|
|
#include "appwindow.h"
|
|
// Test that it's ok to include twice
|
|
#include "appwindow.h"
|
|
|
|
void setup_logic(const Logic &logic)
|
|
{
|
|
logic.on_increment([](int x) { return x + 1; });
|
|
} |