line endings
This commit is contained in:
@@ -24,7 +24,7 @@ class Person
|
||||
|
||||
public:
|
||||
Person() = default;
|
||||
Person(const char* Name, EventTime Birth, bool Sex);
|
||||
Person(const char* name, EventTime birth, bool sex, EventTime death);
|
||||
|
||||
bool operator==(const Person &other)const;
|
||||
|
||||
@@ -36,9 +36,9 @@ public:
|
||||
friend class Tree;
|
||||
|
||||
private:
|
||||
std::string name;
|
||||
unsigned numRel; //Number of close relatives - mother, father, brother, sister, wife/husband, child, ex-wife/husband
|
||||
EventTime birth;
|
||||
bool isMale;
|
||||
EventTime death;
|
||||
std::string name_;
|
||||
unsigned numRel_; //Number of close relatives - mother, father, brother, sister, wife/husband, child, ex-wife/husband
|
||||
EventTime birth_;
|
||||
bool isMale_;
|
||||
EventTime death_;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user