If I have this structure:
namespace A
{
template <Class T>
struct Point
{
Point<T>(T x_, T y_) : x(x_), y(y_) {}
Point<T>() : x(0), y(0) {}
T x;
T y;
}
}
How might I define an object from the Point struct?
I tried:
A::Point point;
but it does not work.