File: bsp_test.py

package info (click to toggle)
pybindgen 0.20.0%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,932 kB
  • sloc: python: 15,981; cpp: 1,889; ansic: 617; makefile: 86; sh: 4
file content (15 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import sys
import os.path
sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)),
                                '..', '..', 'build', 'examples', 'boost_shared_ptr'))

import bsp


f = bsp.Foo("hello123")
bsp.function_that_takes_foo(f)
f1 = bsp.function_that_returns_foo()
print f1.get_datum()
f.set_datum("xxxx")
print f1.get_datum()