// GuestInfo.h

#ifndef _GuestInfo_h
#define _GuestInfo_h 1

#include "String.h"

struct GuestInfo {
  String name;
  String address;
  int    roomNumber;
  float	 charges;
};
#endif
