Hi,
I'm currently using flext to develop a library of externals itself wrapping another C++ library. On the latter library, some setup classes have to be instanciated once only in a whole application. What's the way to benefit from inheritance in order to:
library in order to create each only once;
As I'm a poor C++ coder, the only ugly way I've yet found to circumvent this is declaring instances of those setup classes outside flext classes, statically. But for sure those variable won't get deleted and Pd sends a "read memory" error message when it's being closed...
Any idea?
Thanks, Christian