| 26 |
#include <vector> |
#include <vector> |
| 27 |
#include "patterns/SmartPtr.hh" |
#include "patterns/SmartPtr.hh" |
| 28 |
#include "GEDCOMParser/NoteStructure.hh" |
#include "GEDCOMParser/NoteStructure.hh" |
| 29 |
|
#include "GEDCOMParser/Visitor/GEDCOMElement.hh" |
| 30 |
|
|
| 31 |
/// |
/// |
| 32 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 33 |
{ |
{ |
| 34 |
|
class GEDCOMVisitor; |
| 35 |
/// @memo Implements the GEDCOM 5.5 SPOUSE_TO_FAMILY_LINK structure |
/// @memo Implements the GEDCOM 5.5 SPOUSE_TO_FAMILY_LINK structure |
| 36 |
class SpouseToFamilyLink |
class SpouseToFamilyLink : public GEDCOMElement |
| 37 |
{ |
{ |
| 38 |
public: |
public: |
| 39 |
virtual ~SpouseToFamilyLink(void) {}; |
virtual ~SpouseToFamilyLink(void) {}; |
| 53 |
/// |
/// |
| 54 |
NoteStructures_t const &getNoteStructures(void) const; |
NoteStructures_t const &getNoteStructures(void) const; |
| 55 |
//@} |
//@} |
| 56 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 57 |
protected: |
protected: |
| 58 |
std::string _fams_xref; |
std::string _fams_xref; |
| 59 |
NoteStructures_t _notes; |
NoteStructures_t _notes; |