// dummyMain.cc   P. Conrad for CISC220, 06J
// Illustrate how to check a .h file for correct syntax

// You can't compile the file person.h directly to check for syntax.
// But you can compile "dummyMain.cc" and see if _it_ compiles.
// If there are errors in person.h, they'll show up when you compile
// dummyMain.cc

#include "person.h"

int main(void)
{
  return 0;
}

