Advertisement
alvsjo

circle.h

Nov 10th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #ifndef CIRCLE_H
  2. #define CIRCLE_H
  3. #include "Point.h"
  4.  
  5. class Circle : public Point
  6. {
  7. private:
  8.     float radius;
  9.     public:
  10.         Circle();
  11.     Circle(float x, float y, float r);
  12.     void print();
  13.  
  14.     ~Circle();
  15.     protected:
  16.  
  17.     private:
  18. };
  19.  
  20. #endif // CIRCLE_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement