isEmpty method

bool isEmpty()

Implementation

bool isEmpty() {
  if (day == '' || month == '' || year == '') {
    return true;
  } else {
    return false;
  }
}