// birthday.h   P. Conrad for CISC220 06J
// a class to represent a birthday.


// @@@ Incomplete... we'll continue this on 06/08/06

// make the include file idempotent

#ifndef BIRTHDAY_H
#define BIRTHDAY_H

class Birthday_C
{

 public:


  const int maxUserNameLength; // = 8

 private:

  char username[maxUserNameLength + 1 ]; // +1 null terminator
  char *name; // variable length string allocated on the heap
  int month;
  int day;

};

#endif
