Hello,
I like to use the indexing_suite_v2 as provided by py++.
As an example I did
{{{
#include <vector>
void foo(std::vector<double> a) { }
}}}
and told module_builder_t to use v2
{{{
mb = module_builder.module_builder_t(
...
, indexing_suite_version=2)
}}}
This is what py++ generated for me
- http://pastebin.ca/1322914
But compiling via
$ LC_ALL=C g++ -c pyWrapper.cpp -I . -I /usr/include/python2.6/ 2>&1|tee log
gives error message
- http://pastebin.ca/1322912
which contains
error: no class template named 'extract_return_type'
How to do it right?
Thanks,
-- Maik
PS:
$ pacman -Qs boost$
local/boost 1.37.0-1
$ pacman -Qs pyplusplus-svn$
local/pyplusplus-svn 1635-1
|