H
Herby
Iv defined the following class in vector.h
using namespace System::Collections::Generic;
generic<typename T1>
ref class Vector : public List<T1>
{
public:
Vector(void);
};
I would really like to put the implementation in the cpp - is this
still not possible - also with generics?
// vector.cpp
Vector::Vector(void)
{
}
But i get the above error!
Have i just defined it wrong? or must it all go in the header?
using namespace System::Collections::Generic;
generic<typename T1>
ref class Vector : public List<T1>
{
public:
Vector(void);
};
I would really like to put the implementation in the cpp - is this
still not possible - also with generics?
// vector.cpp
Vector::Vector(void)
{
}
But i get the above error!
Have i just defined it wrong? or must it all go in the header?