
-----Original Message----- From: boost-bounces@lists.boost.org [mailto:boost-bounces@lists.boost.org] On Behalf Of Simonson, Lucanus J Sent: Monday, October 08, 2007 3:49 PM To: boost@lists.boost.org Subject: Re: [boost] [GTL] - geometric template library - determininginterest
John Femiani wrote:
I remember reading somewhere that sometimes inheritance can be a
produce smaller type than composition in some cases.
In the case that virtual functions are used by both the base and derived class inheritance will not incur the additional overhead of an extra virtual pointer that composition would do. In this case also the reinterpret cast from one to the other would be non-safe. This is not the case in my design pattern since I don't use virtual functions in
trick the
classes that derive from the template argument.
Luke _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
I think there is also something about classes with no data members. -- John