// demoCD.cc   P. Conrad CISC220 06J
// demo how constructors and destructors work... when they get called


#include "cd.h"

int main(void)
{
  CD_C a;


  return 0;
}
