summaryrefslogtreecommitdiffstats
path: root/misc/swig/callback/callback.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/swig/callback/callback.go')
-rw-r--r--misc/swig/callback/callback.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/swig/callback/callback.go b/misc/swig/callback/callback.go
new file mode 100644
index 0000000..0d6e97f
--- /dev/null
+++ b/misc/swig/callback/callback.go
@@ -0,0 +1,11 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package callback
+
+type GoCallback struct{}
+
+func (p *GoCallback) Run() string {
+ return "GoCallback.Run"
+}