#include <iostream>
#include <string>
#include "Staff.h"
using namespace std;
int main()
{
Staff mary("Jones", "Mary");
Staff joe;
joe = Staff("Smith", "Joe");
Staff geoff; // this is how you call the 0-arg
// constructor... NO ()!!!!!
cout << mary.get_lastName() << endl;
return 0;
}