swig
How can I use the Google page-speed SDK from C#
I would like to be able to use the Google page-speed SDK ( http://code.google.com/p/开发者_开发问答page-speed/ ) from within managed code ( C# ) I am a bit out of my depth, so if anyone can explain wh[详细]
2023-02-22 17:18 分类:问答Wrapping std::vector of boost::shared_ptr in SWIG for Python
EDIT: Solved, my mistake; explained in my answer. I have this: std::vector < boost::shared_ptr < Entity > > entities;[详细]
2023-02-22 09:09 分类:问答C++ Objects That Carry Custom Python Data In SWIG
Is there a way for C++ objects, wrapped by SWIG, to carry custom Python data with them as they pass back and forth between C++ and Python? Example:[详细]
2023-02-21 21:17 分类:问答How to design my interface for SWIG?
I\'m using SWIG to make my C code work 开发者_如何学Con php...But I don\'t figure out how to write a good interface based on my C code to pass to SWIG.Can somebody help me? The link to see what my C c[详细]
2023-02-20 20:57 分类:问答try to embed my C code in PHP script
I am learnin开发者_JAVA百科g how to use SWIG, and I am writing a php wrapper for a C library. The extension successfully compiles, but when I try to call the function I get this error:[详细]
2023-02-20 14:30 分类:问答Redirection of stdout from a SWIG-wrapped C++ class to a non-file python object
I\'m trying to redirect the output from a SWIG-wrapped C module to a python class. The SWIG caller is a python class which already has sys.stdout overwritten in the following way:[详细]
2023-02-19 08:44 分类:问答swig undefined symbol on templates with static members in python
The need is to export to python with swig a portion of a templated class with some static members. All compiles well and the module is correctly created with the name _pipeit.so; the problem comes whe[详细]
2023-02-17 16:19 分类:问答Moving binary data to/from Perl using SWIG
I\'m trying to make it easy for me to move binary data between Perl and my C++ library. I created a c++ struct to hand the binary_data:[详细]
2023-02-16 08:04 分类:问答SWIG wrapped vector of vectors (C++ to python) - how to recognise the inner vector as a proxy object?
I\'m facing a similar issue to Wrap std::vector of std::vectors, C++ SWIG Python - but it\'s not just simple C++ parsing. I have the following in my C++ code[详细]
2023-02-16 06:29 分类:问答vector< vector <double> > argument with swig and python
I\'m trying to figure out how to use SWIG to wrap a c++ function that returns 2d vector to python.I have the file functions.h[详细]
2023-02-15 21:07 分类:问答