Lets say we've got the following:
(1) Class C which has two members X1 x1 and Y1 y1.
(2) C has no default constructor, but does have the constructor C(Z).
(3) A class X1 that has no default constructor, but the constructor X1(X2).
(4) A class Y1 that has no default constructor, but the constructor Y1(Y2).
(5) A function f(Z), which returns std::pair<X2, Y2>
Lets say f(z) -> std::pair<X2, Y2>{x2,y2}.
How do I write the class C such that member X1 x1 == X1(x2) and Y1 y1 == Y1(y2) after construction?
ftwice? – jogojapan Nov 2 '12 at 8:52fisn't pure, so callingftwice results in two different inconsistent results. – Clinton Nov 2 '12 at 13:07