| 27 |
#include "patterns/SmartPtr.hh" |
#include "patterns/SmartPtr.hh" |
| 28 |
#include "GEDCOMParser/SourceCitation.hh" |
#include "GEDCOMParser/SourceCitation.hh" |
| 29 |
#include "GEDCOMParser/NoteStructure.hh" |
#include "GEDCOMParser/NoteStructure.hh" |
| 30 |
|
#include "GEDCOMParser/Visitor/GEDCOMElement.hh" |
| 31 |
|
|
| 32 |
/// |
/// |
| 33 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 34 |
{ |
{ |
| 35 |
|
class GEDCOMVisitor; |
| 36 |
class PersonalName; |
class PersonalName; |
| 37 |
///@name typedefs |
///@name typedefs |
| 38 |
//@{ |
//@{ |
| 45 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 46 |
{ |
{ |
| 47 |
/// @memo Implements the GEDCOM 5.5 PERSONAL_NAME_STRUCTURE structure |
/// @memo Implements the GEDCOM 5.5 PERSONAL_NAME_STRUCTURE structure |
| 48 |
class PersonalName |
class PersonalName : public GEDCOMElement |
| 49 |
{ |
{ |
| 50 |
protected: |
protected: |
| 51 |
std::string _raw_name; |
std::string _raw_name; |
| 113 |
/// |
/// |
| 114 |
NoteStructures_t const &getNoteStructures(void) const; |
NoteStructures_t const &getNoteStructures(void) const; |
| 115 |
//@} |
//@} |
| 116 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 117 |
}; |
}; |
| 118 |
}; |
}; |
| 119 |
#endif |
#endif |