plugeth/ui/qt/qwhisper/watch.go
obscuren 0e5aed63dd Updated QWhisper
* changed api
* general whisper debug interface
2014-12-21 15:06:35 +01:00

14 lines
135 B
Go

package qwhisper
import (
"fmt"
"unsafe"
)
type Watch struct {
}
func (self *Watch) Arrived(v unsafe.Pointer) {
fmt.Println(v)
}