| 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 |
/// |
/// |
| 31 |
namespace GEDCOMParser { |
namespace GEDCOMParser { |
| 32 |
|
class GEDCOMVisitor; |
| 33 |
class NoteStructure; |
class NoteStructure; |
| 34 |
///@name typedefs |
///@name typedefs |
| 35 |
//@{ |
//@{ |
| 44 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 45 |
{ |
{ |
| 46 |
/// @memo Implements the GEDCOM 5.5 NOTE_STRUCTURE structure |
/// @memo Implements the GEDCOM 5.5 NOTE_STRUCTURE structure |
| 47 |
class NoteStructure |
class NoteStructure : public GEDCOMElement |
| 48 |
{ |
{ |
| 49 |
protected: |
protected: |
| 50 |
std::string _note_xref; |
std::string _note_xref; |
| 73 |
/// |
/// |
| 74 |
virtual std::string const &getSubmitterText(void) const; |
virtual std::string const &getSubmitterText(void) const; |
| 75 |
//@} |
//@} |
| 76 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 77 |
}; |
}; |
| 78 |
}; |
}; |
| 79 |
#endif |
#endif |