I have implemented a class in C++. I want to use it with Python. Please suggest step by step method and elaborate each step. Somthing like this...
I would suggest you try SWIG or sip (KDE/PyQt).
SWIG link : http://www.swig.org/ SIP link: http://freshmeat.net/projects/python-sip/
These can be used to wrap C++ classes and provide a Pythonic interface to them.