1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright © SixtyFPS GmbH <info@slint.dev> // SPDX-License-Identifier: MIT // ANCHOR: main // main.cpp #include "memory.h" // generated header from memory.slint int main() { auto main_window = MainWindow::create(); main_window->run(); } // ANCHOR_END: main