
11 Oct
2007
11 Oct
'07
2:45 p.m.
Hi Gyuszi,
My syntax is not exact, just writing from memory:
I'm trying to correlate this with Lucanus post....
class gtl::PointInterface<MyPoint>
This would be the PointConcept in Lucanus post?
then you would typedef: typedef gtl::PointImpl<MyPoint> Point;
With PointImp there you meant PointInterface??
Point p1(..), p2(..), p3(..);
This can't be right. You are constructing an instance of class Point. Where is the adaptation from my instance of type MyPoint? How doesn't this avoid copying? Best Fernando