Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/python/pyste/tests/wrappertest.pyste @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 449 bytes
Line 
1Include('wrappertest_wrappers.h')
2
3f = Function('wrappertest::Range', 'wrappertest.h')
4set_wrapper(f, 'RangeWrapper')
5
6mul = Wrapper('MulWrapper',
7'''
8list MulWrapper(wrappertest::C& c, int value){   
9    return VectorToList(c.Mul(value));
10}
11'''
12)
13
14C = Class('wrappertest::C', 'wrappertest.h')
15set_wrapper(C.Mul, mul)
16
17
18A = Class('wrappertest::A', 'wrappertest.h')
19set_wrapper(A.f, 'f_wrapper')
20
21Function('wrappertest::call_foo', 'wrappertest.h')
Note: See TracBrowser for help on using the repository browser.