This commit is contained in:
vrd
2023-02-24 09:00:29 +02:00
parent 864d40cb81
commit e626470f71
5 changed files with 34 additions and 20 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ class Person
{
public:
Person() = default;
Person(const char* name, EventTime birth={}, Sex=M, EventTime death={});
Person(const char* aName, EventTime birth={}, Sex=M, EventTime death={});
/* Person(Person&&) = default; */
/* Person& operator=(Person&&) = default; */
/* Person& operator=(const Person&) = default; */
@@ -62,7 +62,7 @@ public:
returns the width of the box*/
void draw(I16 drawY, I16 drawX, bool selected, bool hasSpouse, bool isSpouse, bool hasChildren=false) const;
std::string name_;
std::string name;
EventTime birth_;
Sex sex;
EventTime death_;