windowing_qt 0.17.5

Implementation of windowing_api using QT Framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "qslot_cpp.h"
#include <stdio.h>

QSlotCpp::QSlotCpp() {
}

QSlotCpp::~QSlotCpp() {
}

void QSlotCpp::setFunc(void (*func)(void *), void *data) {
    m_func = func;
    m_data = data;
}

void QSlotCpp::method() {
    m_func(m_data);
}