I would like to know more about C++ wrappers. What is a wrapper object
in C++ and why is it neccessary? I am trying to create a templated
linked list data structure to store any object or primitive however I'm
told it would work best with a wrapper object.
>I would like to know more about C++ wrappers. What is a wrapper object
> in C++ and why is it neccessary? I am trying to create a templated
> linked list data structure to store any object or primitive however I'm
> told it would work best with a wrapper object.
This is a Java newsgroup, not a C++ one, but the concept of a wrapper
object sort of transcends languages (as long as those languages are object
oriented, anyway).
That said, if you had googled for "Wrapper Object", the first hit Google
returns explains the concept: http://javaalmanac.com/egs/java.lang/Wrap.html
- Oliver
Vitaly - 14 Nov 2005 16:03 GMT
Try The Wrapper Generator for MS VC++ 7.1 at
http://simtel.net/product.php[id]90910[SiteID]simtel.net
> >I would like to know more about C++ wrappers. What is a wrapper object
> > in C++ and why is it neccessary? I am trying to create a templated
[quoted text clipped - 9 lines]
>
> - Oliver