Advertisement
Touch_Grass

Untitled

May 18th, 2023
524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.20 KB | None | 0 0
  1. #include "header.h"
  2. #include <iostream>
  3.  
  4.  
  5. MyClass::MyClass(QObject *parent) : QObject(parent) {
  6.  
  7. }
  8.  
  9. void MyClass::buttonClicked() {
  10.     std::cout << "Hello world!\n";
  11.     emit response();
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement