#include <vector>
template <class T>
class ListModule
{
public:
ListModule();
~ListModule();
protected:
private:
vector<T> _List;
vector<T>::iterator _It; // << Error is here
};
Ok thanks for your advice. I will test that on a nightly.In case you didn't understand me the first time: