blob: 66ec7f0493fa49d2dbfc3c1f8663faf285891702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PERSON_H
#define PERSON_H
#include <string>
struct Person {
std::string Name;
std::string Address;
std::string GetAddress() const { return Address; }
std::string GetName() const { return Name; }
};
#endif
|