Hey forum, I've been hearing things about the possibility to use Python/Ruby/Anything together with C++ in such a way, that the first would act like some sort of scripting language to the classes defined in the C++ file. I might be wrong on this, but I'd really like some info on this subject, what are the specifications, when should I use this, when should I NOT use this and how do I do this in the first place?
Python is designed to be embeddable as you describe. Full details are available at the Python Documentation Index. http://www.python.org/doc/
(Click on the link for "Extending and Embedding".)