school/cs142/smcquay/lab09/person.h

17 lines
278 B
C
Raw Permalink Normal View History

2016-04-06 20:45:34 -07:00
#ifndef __PERSON_H__
#define __PERSON_H__
#include <ostream>
#include <string>
using namespace std;
struct person {
string name;
int age;
person(string name, int age): name(name), age(age) {};
friend ostream & operator<<(ostream & os, person & p);
};
#endif