From: Jonathan W. <co...@co...> - 2003-03-20 15:52:59
|
On Thu, Mar 20, 2003 at 03:32:10PM +0000, Jonathan Wakely wrote: > libxml++.a would contain node.o, built from node.cc, which includes > the node.tcc and node.h headers. > > Users would include node.h for the common string types, and if they want > to use a string type not supported directly they'd have to include > node.tcc to see the bodies of the functions. Forgot this bit, this would be a user's code, which would link to the library containing the explicit instantiations. ---------------------------- #include "tmpl.h" int main() { xmlpp::qt::Node qnode; qnode.makeSomeNoise(); } --------------------------- jon |