// Example 7-18: Declaring and defining a template.
// program.cpp
#include "point.h"

int main()
{
  point<float> ptf;
  point<int> pti;
}
