accessing instance variable from another template class
问题 (mostly pasted from accessing variable from another class template to separate two problems) i am trying to make a system of container classes that can be used with a data loader class to load data from text files here are the two classes of data: class Customer { //... }; class Tour { std::vector<Customer*> custPtrs; //... }; these are my two container classes: template <class T> class P_VContainer { boost::ptr_vector<T> data; //... }; template <class T> class ListContainer { std::list<T>