![]() |
Data Abstraction and Problem Solving with C++Walls and Mirrorsby Frank M. Carrano |
![]() |
EquidistantShape410.hGo to the documentation of this file.00001 00023 class EquidistantShape 00024 { 00025 public: 00026 virtual void setRadius(double newRadius) = 0; 00027 virtual double getRadius() const = 0; 00028 virtual void displayStatistics() const = 0; 00029 }; // end EquidistantShape |