| 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 MultimediaLink; |
class MultimediaLink; |
| 34 |
///@name typedefs |
///@name typedefs |
| 35 |
//@{ |
//@{ |
| 44 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 45 |
{ |
{ |
| 46 |
/// @memo Implements the GEDCOM 5.5 MULTIMEDIA_LINK structure |
/// @memo Implements the GEDCOM 5.5 MULTIMEDIA_LINK structure |
| 47 |
class MultimediaLink |
class MultimediaLink : public GEDCOMElement |
| 48 |
{ |
{ |
| 49 |
protected: |
protected: |
| 50 |
std::string _obj_xref; |
std::string _obj_xref; |
| 81 |
/// |
/// |
| 82 |
NoteStructures_t const &getNoteStructures(void) const; |
NoteStructures_t const &getNoteStructures(void) const; |
| 83 |
//@} |
//@} |
| 84 |
|
virtual void Accept(GEDCOMParser::GEDCOMVisitor *); |
| 85 |
}; |
}; |
| 86 |
}; |
}; |
| 87 |
#endif |
#endif |