| 21 |
**/ |
**/ |
| 22 |
|
|
| 23 |
#include "OneFamilyLinkHandler.hh" |
#include "OneFamilyLinkHandler.hh" |
| 24 |
|
|
| 25 |
|
|
| 26 |
|
OneFamilyLinkHandler::OneFamilyLinkHandler(std::string const &man, |
| 27 |
|
std::string const &woman, |
| 28 |
|
OneFamilyLinkHandler::NavigationSlotHandler_t * navigation_slot_man, |
| 29 |
|
OneFamilyLinkHandler::NavigationSlotHandler_t * navigation_slot_woman, |
| 30 |
|
OneFamilyLinkHandler::PopdownLinkEditionSlotHandler_t * popdownlinkedition_slot_man, |
| 31 |
|
OneFamilyLinkHandler::PopdownLinkEditionSlotHandler_t * popdownlinkedition_slot_woman |
| 32 |
|
) : |
| 33 |
|
_man(man), |
| 34 |
|
_woman(woman), |
| 35 |
|
_navigation_slot_man(navigation_slot_man), |
| 36 |
|
_navigation_slot_woman(navigation_slot_woman), |
| 37 |
|
_popdownlinkedition_slot_man(popdownlinkedition_slot_man), |
| 38 |
|
_popdownlinkedition_slot_woman(popdownlinkedition_slot_woman) |
| 39 |
|
{ |
| 40 |
|
return; |
| 41 |
|
} |
| 42 |
|
|
| 43 |
|
std::string const &OneFamilyLinkHandler::getMan(void) const |
| 44 |
|
{ |
| 45 |
|
return _man; |
| 46 |
|
} |
| 47 |
|
|
| 48 |
|
std::string const &OneFamilyLinkHandler::getWoman(void) const |
| 49 |
|
{ |
| 50 |
|
return _woman; |
| 51 |
|
} |
| 52 |
|
|
| 53 |
|
OneFamilyLinkHandler::NavigationSlotHandler_t * OneFamilyLinkHandler::getNavigationSlotMan(void) const |
| 54 |
|
{ |
| 55 |
|
return _navigation_slot_man; |
| 56 |
|
} |
| 57 |
|
|
| 58 |
|
OneFamilyLinkHandler::NavigationSlotHandler_t * OneFamilyLinkHandler::getNavigationSlotWoman(void) const |
| 59 |
|
{ |
| 60 |
|
return _navigation_slot_woman; |
| 61 |
|
} |
| 62 |
|
|
| 63 |
|
OneFamilyLinkHandler::PopdownLinkEditionSlotHandler_t * OneFamilyLinkHandler::getPopdownLinkEditionSlotMan(void) const |
| 64 |
|
{ |
| 65 |
|
return _popdownlinkedition_slot_man; |
| 66 |
|
} |
| 67 |
|
|
| 68 |
|
OneFamilyLinkHandler::PopdownLinkEditionSlotHandler_t * OneFamilyLinkHandler::getPopdownLinkEditionSlotWoman(void) const |
| 69 |
|
{ |
| 70 |
|
return _popdownlinkedition_slot_woman; |
| 71 |
|
} |