G
Gil
trying to use a template in a vector, in Visual Studio 6 on Windows
2000
#include <vector>
using namespace std;
template <typename T>
class AnyValue {
T val;
public :
AnyValue(T inv)
{
val = inv;
}
};
class ValuesObject {
int count;
vector<AnyValue, allocator<AnyValue> > ivo; // error occurs here!!
public :
ValuesObject() {}
~ValuesObject() {}
int getCount()
{
return count;
}
void addValue(AnyValue av)
{
vector<AnyValue, allocator<AnyValue> >::iterator iter = ivo.end();
ivo.insert(iter, av);
}
};
I'm getting :
error C2955: 'AnyValue' : use of class template requires template
argument list
Can anyone see what I am doing wrong?
As far as C++ is concerned, is what I am doing correct? Is this a
compiler issue with Visual C++?
2000
#include <vector>
using namespace std;
template <typename T>
class AnyValue {
T val;
public :
AnyValue(T inv)
{
val = inv;
}
};
class ValuesObject {
int count;
vector<AnyValue, allocator<AnyValue> > ivo; // error occurs here!!
public :
ValuesObject() {}
~ValuesObject() {}
int getCount()
{
return count;
}
void addValue(AnyValue av)
{
vector<AnyValue, allocator<AnyValue> >::iterator iter = ivo.end();
ivo.insert(iter, av);
}
};
I'm getting :
error C2955: 'AnyValue' : use of class template requires template
argument list
Can anyone see what I am doing wrong?
As far as C++ is concerned, is what I am doing correct? Is this a
compiler issue with Visual C++?