| 27 |
std::string const &husband, |
std::string const &husband, |
| 28 |
std::string const &wife, |
std::string const &wife, |
| 29 |
std::vector < std::string > const &children, |
std::vector < std::string > const &children, |
| 30 |
OneFamilyLinkHandler::SlotHandler_t * slot_husband, |
OneFamilyLinkHandler::NavigationSlotHandler_t * navigation_slot_husband, |
| 31 |
OneFamilyLinkHandler::SlotHandler_t * slot_wife, |
OneFamilyLinkHandler::NavigationSlotHandler_t * navigation_slot_wife, |
| 32 |
std::vector< OneFamilyLinkHandler::SlotHandler_t * > slots_children) : |
OneFamilyLinkHandler::PopdownLinkEditionSlotHandler_t * popdownlinkedition_slot_husband, |
| 33 |
|
OneFamilyLinkHandler::PopdownLinkEditionSlotHandler_t * popdownlinkedition_slot_wife, |
| 34 |
|
std::vector< OneFamilyLinkHandler::NavigationSlotHandler_t * > navigation_slots_children) : |
| 35 |
|
OneFamilyLinkHandler(husband, |
| 36 |
|
wife, |
| 37 |
|
navigation_slot_husband, |
| 38 |
|
navigation_slot_wife, |
| 39 |
|
popdownlinkedition_slot_husband, |
| 40 |
|
popdownlinkedition_slot_wife), |
| 41 |
_union_date(union_date), |
_union_date(union_date), |
| 42 |
_union_place(union_place), |
_union_place(union_place), |
|
_husband(husband), |
|
|
_wife(wife), |
|
| 43 |
_children(children), |
_children(children), |
| 44 |
_slot_husband(slot_husband), |
_navigation_slots_children(navigation_slots_children) |
|
_slot_wife(slot_wife), |
|
|
_slots_children(slots_children) |
|
| 45 |
{ |
{ |
| 46 |
return; |
return; |
| 47 |
} |
} |
| 56 |
return _union_place; |
return _union_place; |
| 57 |
} |
} |
| 58 |
|
|
|
std::string const &OneSpouseToFamilyLinkHandler::getHusband(void) const |
|
|
{ |
|
|
return _husband; |
|
|
} |
|
|
|
|
|
std::string const &OneSpouseToFamilyLinkHandler::getWife(void) const |
|
|
{ |
|
|
return _wife; |
|
|
} |
|
|
|
|
| 59 |
std::vector < std::string > const &OneSpouseToFamilyLinkHandler::getChildren(void) const |
std::vector < std::string > const &OneSpouseToFamilyLinkHandler::getChildren(void) const |
| 60 |
{ |
{ |
| 61 |
return _children; |
return _children; |
| 62 |
} |
} |
|
OneFamilyLinkHandler::SlotHandler_t * OneSpouseToFamilyLinkHandler::getSlotHusband(void) const |
|
|
{ |
|
|
return _slot_husband; |
|
|
} |
|
|
|
|
|
OneFamilyLinkHandler::SlotHandler_t * OneSpouseToFamilyLinkHandler::getSlotWife(void) const |
|
|
{ |
|
|
return _slot_wife; |
|
|
} |
|
| 63 |
|
|
| 64 |
std::vector< OneFamilyLinkHandler::SlotHandler_t * > const &OneSpouseToFamilyLinkHandler::getSlotsChildren(void) const |
std::vector< OneFamilyLinkHandler::NavigationSlotHandler_t * > const &OneSpouseToFamilyLinkHandler::getNavigationSlotsChildren(void) const |
| 65 |
{ |
{ |
| 66 |
return _slots_children; |
return _navigation_slots_children; |
| 67 |
} |
} |
|
|
|