I'm new to C++/CX. I want to create a Vector class with two properties X and Y.
In standard C++, the copy constructor is:
Vector(const Vector& v);
I translate that to C++/CX as:
Vector(const Vector^ v);
Here's the class:
Header:
ref class Vector
{
public:
Vector();
Vector(const Vector^ v);
property double X;
property double Y;
};
Implementation:
Vector::Vector()
{
X = 0;
Y = 0;
}
Vector::Vector(const Vector^ v)
{
this->X = v->X;
this->Y = v->Y;
}
But I got an error when assigning v->X to this->X as: no instance of function "Vector::X::get" matches the argument list and object (the object as type qualifiers that prevent a match).
How to implement the copy constructor correctly?
Thanks.
ref classis always used by a reference, so you will always copy just the reference, no need for a copy constructor. – svick Jul 22 '12 at 12:21