| 20 |
|
|
| 21 |
*/ |
*/ |
| 22 |
#include "Place.hh" |
#include "Place.hh" |
| 23 |
|
#include <iostream> |
| 24 |
|
#include "GEDCOMParser/Visitor/GEDCOMVisitor.hh" |
| 25 |
|
|
| 26 |
void GEDCOMParser::Place::setPlaceValue(std::string const & pvalue) |
void GEDCOMParser::Place::setPlaceValue(std::string const & pvalue) |
| 27 |
{ |
{ |
| 65 |
|
|
| 66 |
std::string const & GEDCOMParser::Place::getPlaceHierarchy(void) const |
std::string const & GEDCOMParser::Place::getPlaceHierarchy(void) const |
| 67 |
{ |
{ |
| 68 |
|
std::cerr << "before PlaceHierarchy" << std::endl; |
| 69 |
return _hierarchy; |
return _hierarchy; |
| 70 |
|
std::cerr << "after PlaceHierarchy" << std::endl; |
| 71 |
|
} |
| 72 |
|
|
| 73 |
|
void GEDCOMParser::Place::Accept(GEDCOMParser::GEDCOMVisitor * v) |
| 74 |
|
{ |
| 75 |
|
v->VisitPlace(this); |
| 76 |
|
return; |
| 77 |
} |
} |