// point.h   A class to represent a point
// Donald Duck (don't put real name on exam)
// function prototypes for point.cc 



#ifndef POINT_H
#define POINT_H


class Point_C
{

 public: 

  Point_C ();  // constructor (init to origin, 0,0)
  
  void setX(double userX);
  void setY(double userY);
  double getX() const; // const, b/c not modifying
  double getY() const; 

  double getAngle() const ; 
  double distFromOrigin() const ;
  
 private:

    
    double x;
    double y;





};


#endif /* POINT_H */
