/** @file list3102.cpp */
/** Listing 31-2. Multiple Data Members in one Declaration */
struct point
{
  double x, y;
};
