Please send questions to st10@humboldt.edu .
#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;
}