inherit/geoobj.hpp

The following code example is taken from the book
Object-Oriented Programming in C++
by Nicolai M. Josuttis, Wiley, 2002
© Copyright Nicolai M. Josuttis 2002


#ifndef GEOOBJ_HPP
#define GEOOBJ_HPP

// header file for coordinates
#include "coord.hpp"

namespace Geo {

/* abstract base class GeoObj
 * - common base class for geometric objects
 * - provided for inheritance
 */
class GeoObj {
  protected:
    // every GeoObj has a reference point
    Coord refpoint;

    /* constructor for an initial reference point
     * - not public
     * - there is no default constructor available
     */
    GeoObj(const Coord& p) : refpoint(p) {
    }

  public:
    // move geometric object according to passed relative offset
    virtual void move(const Coord& offset) {
        refpoint += offset;
    }

    /* draw geometric object
     * - pure virtual function
     */
    virtual void draw() const = 0;

    // virtual destructor
    virtual ~GeoObj() {
    }
};

}  // namespace Geo

#endif  // GEOOBJ_HPP