| 20 |
|
|
| 21 |
*/ |
*/ |
| 22 |
#include "GEDCOMParser/Association.hh" |
#include "GEDCOMParser/Association.hh" |
| 23 |
|
#include "GEDCOMParser/Visitor/GEDCOMVisitor.hh" |
| 24 |
|
|
| 25 |
void GEDCOMParser::Association::addIndiXref(std::string const & value) |
void GEDCOMParser::Association::addIndiXref(std::string const & value) |
| 26 |
{ |
{ |
| 52 |
return; |
return; |
| 53 |
} |
} |
| 54 |
|
|
| 55 |
|
GEDCOMParser::IndiXrefs_t const &GEDCOMParser::Association::getIndiXrefs(void) const |
| 56 |
|
{ |
| 57 |
|
return _indi_xrefs; |
| 58 |
|
} |
| 59 |
|
|
| 60 |
GEDCOMParser::NoteStructures_t const &GEDCOMParser::Association::getNoteStructures(void) const |
GEDCOMParser::NoteStructures_t const &GEDCOMParser::Association::getNoteStructures(void) const |
| 61 |
{ |
{ |
| 62 |
return _notes; |
return _notes; |
| 76 |
{ |
{ |
| 77 |
return _rela; |
return _rela; |
| 78 |
} |
} |
| 79 |
|
|
| 80 |
|
void GEDCOMParser::Association::Accept(GEDCOMParser::GEDCOMVisitor * v) |
| 81 |
|
{ |
| 82 |
|
v->VisitAssociation(this); |
| 83 |
|
return; |
| 84 |
|
} |