/******************************************************************************************
person.h
******************************************************************************************/
#include <string>
using namespace std;

// class definitions
class person {
    public:
        string first;
        string last;
        string state;
};

// prototypes
void readFile(string filename, person [], const int maximum, int& size);
int TallyByState(string token, person [], const int size);