In MS compiler system, you have some compiler directive called novtable that allows to do what u r saying - get rid of the global vtables from the memory.
One uses it something like this :
class __declspec(novtable) foo { public: virtual void funtion() = 0; };
No match for that in GCC though! Any comments/inputs welcome from gnu guys.
CodeWarrior for Palm OS V9 supports __declspec(novtable) for classes. That doesn't fix your GCC issue, but it is a solution.
--
Ben Combee <[EMAIL PROTECTED]>
CodeWarrior for Palm OS technical lead
Palm OS programming help @ www.palmoswerks.com
-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
