mathieu <[EMAIL PROTECTED]> writes:

> Everything is nicely PIMPLized so I did
> not see no explicit linking issue.

This might be the key. Make sure your class provides no inline
methods that "break" the "PIMPL implementation hiding".

Assuming the library exports 'class Foo', then

  nm -C main-exe | grep 'Foo::' | grep -v ' U '

should produce no output (IOW, all Foo::* methods are imported;
none are inlined or linked from somewhere other than the shared
library).

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to