| 25 |
#include <string> |
#include <string> |
| 26 |
#include "GEDCOMParser/SourceCitation.hh" |
#include "GEDCOMParser/SourceCitation.hh" |
| 27 |
#include "GEDCOMParser/NoteStructure.hh" |
#include "GEDCOMParser/NoteStructure.hh" |
| 28 |
|
#include "GEDCOMParser/Visitor/GEDCOMElement.hh" |
| 29 |
|
|
| 30 |
/// |
/// |
| 31 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 32 |
{ |
{ |
| 33 |
|
class GEDCOMVisitor; |
| 34 |
/// @memo Implements the GEDCOM 5.5 PLACE_STRUCTURE structure |
/// @memo Implements the GEDCOM 5.5 PLACE_STRUCTURE structure |
| 35 |
class Place |
class Place : public GEDCOMElement |
| 36 |
{ |
{ |
| 37 |
protected: |
protected: |
| 38 |
std::string _value; |
std::string _value; |
| 66 |
/// |
/// |
| 67 |
NoteStructures_t const &getNoteStructures(void) const; |
NoteStructures_t const &getNoteStructures(void) const; |
| 68 |
//@} |
//@} |
| 69 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 70 |
}; |
}; |
| 71 |
}; |
}; |
| 72 |
#endif |
#endif |