slint/api/cpp/tests/multiple-includes/logic.cpp
2024-04-22 13:06:05 +02:00

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; });
}