Is it possible to import a shared library and use the namespaces/classes? I'm not very familiar with OOP and I've always imported shared libraries that map to a specific function.
Thanks in advance.
If you are talking about libraries created with C++, then this is impossible.
http://www.isotton.com/devel/docs/C++-dlopen-mini-HOWTO/C++-dlopen-mini-HOWTO.html
Except when the C++ source uses 'extern C'. But then you have to be lucky!
Regards
Ah, bummer. Thanks for the info -- that helped clear it up for me.