mirror of
https://github.com/mappu/miqt.git
synced 2025-01-05 15:18:38 +00:00
25 lines
371 B
Go
25 lines
371 B
Go
|
package main
|
||
|
|
||
|
type nativeProperty struct {
|
||
|
propertyName string
|
||
|
propertyType string
|
||
|
visibility string
|
||
|
}
|
||
|
|
||
|
type nativeMethod struct {
|
||
|
methodName string
|
||
|
returnType string
|
||
|
parameters []string
|
||
|
}
|
||
|
|
||
|
type nativeClass struct {
|
||
|
className string
|
||
|
extends []string
|
||
|
methods []nativeMethod
|
||
|
props []nativeProperty
|
||
|
}
|
||
|
|
||
|
type parsedHeader struct {
|
||
|
classes []nativeClass
|
||
|
}
|