X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FMEFISTO2%2FRn.h;h=6babaff96eb043eee53d62366f823d39523e90ab;hp=cae413d78e1b2cb5f488a03d05e2c6e080a8f7f6;hb=499f29d24922cec66e41b41a0039a954993bc6df;hpb=385d4cede5f752d0eec26c306f3b5e14511e2a3d diff --git a/src/MEFISTO2/Rn.h b/src/MEFISTO2/Rn.h index cae413d78..6babaff96 100644 --- a/src/MEFISTO2/Rn.h +++ b/src/MEFISTO2/Rn.h @@ -1,6 +1,6 @@ // MEFISTO : library to compute 2D triangulation from segmented boundaries // -// Copyright (C) 2006-2019 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2006-2022 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -180,12 +180,12 @@ class R4: public R3 { friend std::ostream& operator <<(std::ostream& f, const R4 & P ) { f << P.x << ' ' << P.y << ' ' << P.z << ' ' << P.omega; return f; } - friend istream& operator >>(istream& f, R4 & P) + friend std::istream& operator >>(std::istream& f, R4 & P) { f >> P.x >> P.y >> P.z >> P.omega ; return f; } friend std::ostream& operator <<(std::ostream& f, const R4 * P ) { f << P->x << ' ' << P->y << ' ' << P->z << ' ' << P->omega; return f; } - friend istream& operator >>(istream& f, R4 * P) + friend std::istream& operator >>(std::istream& f, R4 * P) { f >> P->x >> P->y >> P->z >> P->omega ; return f; } public: