| 25 |
#include <string> |
#include <string> |
| 26 |
#include "GEDCOMParser/NoteStructure.hh" |
#include "GEDCOMParser/NoteStructure.hh" |
| 27 |
#include "GEDCOMParser/DateManagement/DateValue.hh" |
#include "GEDCOMParser/DateManagement/DateValue.hh" |
| 28 |
|
#include "GEDCOMParser/Visitor/GEDCOMElement.hh" |
| 29 |
|
|
| 30 |
/// Package GEDCOMParser |
/// Package GEDCOMParser |
| 31 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 32 |
{ |
{ |
| 33 |
|
class GEDCOMVisitor; |
| 34 |
/// @memo Implements the GEDCOM 5.5 CHANGE_DATE structure |
/// @memo Implements the GEDCOM 5.5 CHANGE_DATE structure |
| 35 |
class ChangeDate |
class ChangeDate : public GEDCOMElement |
| 36 |
{ |
{ |
| 37 |
protected: |
protected: |
| 38 |
GEDCOMParser::DateManagement::DateValue * _date; |
GEDCOMParser::DateManagement::DateValue * _date; |
| 74 |
//@{ |
//@{ |
| 75 |
virtual std::string const getDate(void) const; |
virtual std::string const getDate(void) const; |
| 76 |
/// |
/// |
| 77 |
|
GEDCOMParser::DateManagement::DateValue const * const getDateObject(void) const; |
| 78 |
|
/// |
| 79 |
virtual std::string const &getTime(void) const; |
virtual std::string const &getTime(void) const; |
| 80 |
/// |
/// |
| 81 |
NoteStructures_t const &getNoteStructures(void) const; |
NoteStructures_t const &getNoteStructures(void) const; |
| 82 |
//@} |
//@} |
| 83 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 84 |
}; |
}; |
| 85 |
}; |
}; |
| 86 |
#endif |
#endif |