github.com/karalabe/go-ethereum@v0.8.5/ui/qt/qwhisper/watch.go (about)

     1  package qwhisper
     2  
     3  import (
     4  	"fmt"
     5  	"unsafe"
     6  )
     7  
     8  type Watch struct {
     9  }
    10  
    11  func (self *Watch) Arrived(v unsafe.Pointer) {
    12  	fmt.Println(v)
    13  }