diff options
Diffstat (limited to 'ui/qt/qwhisper/watch.go')
-rw-r--r-- | ui/qt/qwhisper/watch.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/qt/qwhisper/watch.go b/ui/qt/qwhisper/watch.go new file mode 100644 index 000000000..0ccedc719 --- /dev/null +++ b/ui/qt/qwhisper/watch.go @@ -0,0 +1,13 @@ +package qwhisper + +import ( + "fmt" + "unsafe" +) + +type Watch struct { +} + +func (self *Watch) Arrived(v unsafe.Pointer) { + fmt.Println(v) +} |