#ifndef _PERSON_H_
#define _PERSON_H_

#include <string>
using namespace std;

class Person{
  public:
    Person(const string &name, int age);
    const string &getName() const;
    int getAge() const;
    bool operator<(const Person &other) const;
    
  private:
    string name;
    int age;
};

#endif // _PERSON_H_