Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. konbollen

    templates and inheritance.

    Hello I have the following problem. 1. I have the following template class. template<typename T> class Array { }; 2. I have another template class that inherits from Array template<typename T> class OpenGlVertexArray : public Array<T> { public: virtual OpenGlVertexArray<T>* to_2d(void)...
  2. konbollen

    vc++ 6.0 ans stl.

    Hello. I am trying to define a custom Array class using the stl. the following code gives several compile errors. template< typename T, typename Allocator=allocator<T> > class Array { public: // typedefs. typedef T value_type; typedef Allocator allocator_type; typedef Allocator::reference...

Part and Inventory Search

Back
Top