17 lines
278 B
C++
17 lines
278 B
C++
#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
|