mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-12 12:46:24 +00:00
14 lines
388 B
Nim
14 lines
388 B
Nim
import tables
|
|
|
|
type
|
|
QVariant* = distinct pointer
|
|
QQmlApplicationEngine* = distinct pointer
|
|
QQmlContext* = distinct pointer
|
|
QApplication* = distinct pointer
|
|
QObject* {.inheritable.} = ref object of RootObj
|
|
name*: string
|
|
data*: pointer
|
|
slots*: Table[string, cint]
|
|
signals*: Table[string, cint]
|
|
properties*: Table[string, cint]
|
|
QQuickView* = distinct pointer |