| 25 |
#include <string> |
#include <string> |
| 26 |
#include <vector> |
#include <vector> |
| 27 |
#include "patterns/SmartPtr.hh" |
#include "patterns/SmartPtr.hh" |
| 28 |
|
#include "GEDCOMParser/Visitor/GEDCOMElement.hh" |
| 29 |
/// |
/// |
| 30 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 31 |
{ |
{ |
| 32 |
|
class GEDCOMVisitor; |
| 33 |
class LdsSpouseSealing; |
class LdsSpouseSealing; |
| 34 |
///@name typedefs |
///@name typedefs |
| 35 |
//@{ |
//@{ |
| 46 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 47 |
{ |
{ |
| 48 |
/// @memo Implements the GEDCOM 5.5 LDS_SPOUSE_SEALING structure |
/// @memo Implements the GEDCOM 5.5 LDS_SPOUSE_SEALING structure |
| 49 |
class LdsSpouseSealing |
class LdsSpouseSealing : public GEDCOMElement |
| 50 |
{ |
{ |
| 51 |
protected: |
protected: |
| 52 |
std::string _status; |
std::string _status; |
| 108 |
/// |
/// |
| 109 |
virtual std::string const getDate(void) const; |
virtual std::string const getDate(void) const; |
| 110 |
/// |
/// |
| 111 |
|
GEDCOMParser::DateManagement::DateValue const * const getDateObject(void) const; |
| 112 |
|
/// |
| 113 |
virtual std::string const &getTempleCode(void) const; |
virtual std::string const &getTempleCode(void) const; |
| 114 |
/// |
/// |
| 115 |
virtual std::string const &getPlace(void) const; |
virtual std::string const &getPlace(void) const; |
| 118 |
/// |
/// |
| 119 |
NoteStructures_t const &getNoteStructures(void) const; |
NoteStructures_t const &getNoteStructures(void) const; |
| 120 |
//@} |
//@} |
| 121 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 122 |
}; |
}; |
| 123 |
}; |
}; |
| 124 |
#endif |
#endif |