mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
19 lines
225 B
Go
19 lines
225 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/mappu/miqt/qt"
|
|
"github.com/mappu/miqt/qt/svg"
|
|
)
|
|
|
|
func main() {
|
|
|
|
qt.NewQApplication(os.Args)
|
|
|
|
w := svg.NewQSvgWidget3("../../../doc/logo.svg")
|
|
w.Show()
|
|
|
|
qt.QApplication_Exec()
|
|
}
|