On Thursday 15 August 2002 8:59 pm, Lars Gullik Bjønnes wrote: > Ok... compile error instead now... > > o-exceptions -W -Wall -Winline -c
> ../../../../src/frontends/xforms/Dialogs2.C -MT Dialogs2.lo -MD -MP -MF > .deps/Dialogs2.TPlo ../../../../boost/boost/checked_delete.hpp: In function > `void > boost::checked_delete(T*) [with T = MathPanelDialog]': Interesting. It's saying you have to #include all header files even though you are instantiating only some methods and NOT the c-tor/d_tor. Ok, my compiler idoesn't have that problem. So the "fix" is to #include all header files (see Dialogs.C) in Dilaogs_impl.h instead of forward declaring stuff. Does that work? Angus