slint/api/sixtyfps-cpp/include/vtable.h
2020-05-18 11:04:54 +02:00

18 lines
224 B
C++

template<typename T>
struct VBox {
T *vtable;
void *instance;
};
template<typename T>
struct VRef {
T *vtable;
void *instance;
};
template<typename T>
struct VRefMut {
T *vtable;
void *instance;
}