tags:

views:

52

answers:

2

Hi everyone,

i want to use from PyQt application classes (lib/tool) written on c++ with Qt usage. I searched for solution and found Boost.python. Is it a good decision or there are a better tools for this purpose?

Thank you,

Kenn

A: 

I don't understand the question. You do know that you can use Qt in pure C++, right?

Jive Dadson
I think he wants to write the Apps GUI in PyQt and use C++ for performance critical tasks.
Axel Gneiting
Yes, i want to write GUI in PyQt and use already written c++ lib in it, this lib also import Qt, so i thought that there are the most easiest way to connect them considering common usage of Qt. And thank you for your answer Alex.
Kenn
+1  A: 

Boost.Python should be the easiest way, yes.

Axel Gneiting