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