| 23 |
#define _GEDCOMPARSER_SUBMISSION_HH_ |
#define _GEDCOMPARSER_SUBMISSION_HH_ |
| 24 |
|
|
| 25 |
#include <string> |
#include <string> |
| 26 |
|
#include "GEDCOMParser/Visitor/GEDCOMElement.hh" |
| 27 |
|
|
| 28 |
/// |
/// |
| 29 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 30 |
{ |
{ |
| 31 |
|
class GEDCOMVisitor; |
| 32 |
/// @memo Implements the GEDCOM 5.5 SUBMISSION_RECORD structure |
/// @memo Implements the GEDCOM 5.5 SUBMISSION_RECORD structure |
| 33 |
class Submission |
class Submission : public GEDCOMElement |
| 34 |
{ |
{ |
| 35 |
protected: |
protected: |
| 36 |
std::string _id; |
std::string _id; |
| 82 |
/// |
/// |
| 83 |
virtual std::string const &getRin(void) const; |
virtual std::string const &getRin(void) const; |
| 84 |
//@} |
//@} |
| 85 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 86 |
}; |
}; |
| 87 |
}; |
}; |
| 88 |
#endif |
#endif |