| 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 |
/// Package GEDCOMParser |
/// Package GEDCOMParser |
| 32 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 33 |
{ |
{ |
| 34 |
|
class GEDCOMVisitor; |
| 35 |
///@name typedefs |
///@name typedefs |
| 36 |
//@{ |
//@{ |
| 37 |
/// @doc handling of pedis |
/// @doc handling of pedis |
| 38 |
typedef std::vector<std::string> Pedis_t; |
typedef std::vector<std::string> Pedis_t; |
| 39 |
//@} |
//@} |
| 40 |
/// @memo Implements the GEDCOM 5.5 CHILD_TO_FAMILY_LINK structure |
/// @memo Implements the GEDCOM 5.5 CHILD_TO_FAMILY_LINK structure |
| 41 |
class ChildToFamilyLink |
class ChildToFamilyLink : public GEDCOMElement |
| 42 |
{ |
{ |
| 43 |
public: |
public: |
| 44 |
virtual ~ChildToFamilyLink(void) |
virtual ~ChildToFamilyLink(void) |
| 64 |
/// |
/// |
| 65 |
NoteStructures_t const &getNoteStructures(void) const; |
NoteStructures_t const &getNoteStructures(void) const; |
| 66 |
//@} |
//@} |
| 67 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 68 |
protected: |
protected: |
| 69 |
std::string _famc_xref; |
std::string _famc_xref; |
| 70 |
Pedis_t _pedis; |
Pedis_t _pedis; |