// // main.cpp // FriendFunctions // // Created by Robert Metcalfe on 21/07/13. // Copyright (c) 2013 Robert Metcalfe. All rights reserved. // // // main.cpp // acircle // // Created by Robert Metcalfe on 03/04/13. // Copyright (c) 2013 Robert Metcalfe. All rights reserved. // #include void myFriendMoveFunction(double, double); class point { private: double x, y; friend void myFriendMoveFunction(double, double); public: point(double xi, double yi) { x = xi; y =yi; } double getx() { return x; } double gety() { return y; } void print () { std::cout <<" x "<