| 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 SourceCitation; |
class SourceCitation; |
| 34 |
///@name typedefs |
///@name typedefs |
| 35 |
//@{ |
//@{ |
| 46 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 47 |
{ |
{ |
| 48 |
/// @memo Implements the GEDCOM 5.5 SOURCE_CITATION structure |
/// @memo Implements the GEDCOM 5.5 SOURCE_CITATION structure |
| 49 |
class SourceCitation |
class SourceCitation : public GEDCOMElement |
| 50 |
{ |
{ |
| 51 |
protected: |
protected: |
| 52 |
std::string _source_xref; |
std::string _source_xref; |
| 160 |
/// |
/// |
| 161 |
virtual std::string const &getText(void) const; |
virtual std::string const &getText(void) const; |
| 162 |
//@} |
//@} |
| 163 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 164 |
}; |
}; |
| 165 |
}; |
}; |
| 166 |
#endif |
#endif |