aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/qml/cpptest/cpptest.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/obscuren/qml/cpptest/cpptest.go')
-rw-r--r--Godeps/_workspace/src/github.com/obscuren/qml/cpptest/cpptest.go30
1 files changed, 0 insertions, 30 deletions
diff --git a/Godeps/_workspace/src/github.com/obscuren/qml/cpptest/cpptest.go b/Godeps/_workspace/src/github.com/obscuren/qml/cpptest/cpptest.go
deleted file mode 100644
index 4ba24bce0..000000000
--- a/Godeps/_workspace/src/github.com/obscuren/qml/cpptest/cpptest.go
+++ /dev/null
@@ -1,30 +0,0 @@
-// Package cpptest is an internal test helper.
-package cpptest
-
-// #cgo CXXFLAGS: -std=c++0x -Wall -fno-strict-aliasing -I..
-// #cgo LDFLAGS: -lstdc++
-//
-// #cgo pkg-config: Qt5Core
-//
-// #include "cpptest.h"
-//
-import "C"
-
-import (
- "unsafe"
-
- "gopkg.in/qml.v1"
-)
-
-func NewTestType(engine *qml.Engine) qml.Object {
- var obj qml.Object
- qml.RunMain(func() {
- addr := C.newTestType()
- obj = qml.CommonOf(addr, engine)
- })
- return obj
-}
-
-func PlainTestTypeN(obj qml.Object) int {
- return int(C.plainTestTypeN(unsafe.Pointer(obj.Property("plainAddr").(uintptr))))
-}