I have a ordered linked list templated out and working great. As of now I have a really simple node defined as such
Code:
template <class Type>
struct nodeType
{	
	Type info;
	nodeType<Type> *link;
};
What I am now trying to accomplish is making this linked list a list of another class I am using to get and set data. So each node would be a class. I think This other class is called Point. In this class I have a few functions that get and set the data. I want to be able to access the set function of the point class in each indvidual node. I hope this makes sense. Anyways I am a little confused on how to accomplish this. Do I create a pointer to my Point class in the node?

Thanks

Chad