line endings

This commit is contained in:
vrd
2022-10-21 20:01:34 +03:00
parent f69d0cbc2f
commit 30e6480343
9 changed files with 699 additions and 683 deletions
+6 -6
View File
@@ -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_;
};