text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

EquidistantShape411.h

Go 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

Generated on Sun Aug 27 19:59:37 2006 for AWLogo by  doxygen 1.4.6