aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/qwhisper/watch.go
blob: 0ccedc7194ebc5edcc37d180e44903a9351ce804 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package qwhisper

import (
    "fmt"
    "unsafe"
)

type Watch struct {
}

func (self *Watch) Arrived(v unsafe.Pointer) {
    fmt.Println(v)
}