/** @file list3101.cpp */
/** Listing 31-1. Class Definition for a Cartesian Point */
struct point
{
  double x;
  double y;
};
