aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/qwhisper/watch.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-21 22:06:35 +0800
committerobscuren <geffobscura@gmail.com>2014-12-21 22:06:35 +0800
commit0e5aed63ddbda716ba7373bed7cfc083ec35ced1 (patch)
treea84fbf82aa4c7e211e2c15355b3a9312b538937c /ui/qt/qwhisper/watch.go
parent125bdc325352823bcf83a1a671a0bfaea1d7d7ff (diff)
downloaddexon-0e5aed63ddbda716ba7373bed7cfc083ec35ced1.tar
dexon-0e5aed63ddbda716ba7373bed7cfc083ec35ced1.tar.gz
dexon-0e5aed63ddbda716ba7373bed7cfc083ec35ced1.tar.bz2
dexon-0e5aed63ddbda716ba7373bed7cfc083ec35ced1.tar.lz
dexon-0e5aed63ddbda716ba7373bed7cfc083ec35ced1.tar.xz
dexon-0e5aed63ddbda716ba7373bed7cfc083ec35ced1.tar.zst
dexon-0e5aed63ddbda716ba7373bed7cfc083ec35ced1.zip
Updated QWhisper
* changed api * general whisper debug interface
Diffstat (limited to 'ui/qt/qwhisper/watch.go')
-rw-r--r--ui/qt/qwhisper/watch.go13
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)
+}