slint/examples/cpptest/main.cpp
2020-05-20 19:28:58 +02:00

13 lines
224 B
C++

#include "hello.h"
#include <iostream>
int main() {
static Hello component;
component._foobar.set_handler([](auto...){
std::cout << "Hello from C++" << std::endl;
});
sixtyfps::run(&component);
}