| 1 |
/** |
/* |
| 2 |
Copyright 2002 Cyril Picard |
Copyright 2002 Cyril Picard |
| 3 |
|
|
| 4 |
This file is part of the GEDCOMParser library |
This file is part of the GEDCOMParser library |
| 18 |
along with the GEDCOMParser library ; if not, write to the Free Software |
along with the GEDCOMParser library ; if not, write to the Free Software |
| 19 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 |
|
|
| 21 |
**/ |
*/ |
| 22 |
|
|
| 23 |
#ifndef _GEDCOMPARSER_DATEMANAGEMENT_DATEPHRASE_HH_ |
#ifndef _GEDCOMPARSER_DATEMANAGEMENT_DATEPHRASE_HH_ |
| 24 |
#define _GEDCOMPARSER_DATEMANAGEMENT_DATEPHRASE_HH_ |
#define _GEDCOMPARSER_DATEMANAGEMENT_DATEPHRASE_HH_ |
| 25 |
|
|
| 26 |
#include <string> |
#include <string> |
| 27 |
|
|
| 28 |
|
/// |
| 29 |
namespace GEDCOMParser |
namespace GEDCOMParser |
| 30 |
{ |
{ |
| 31 |
|
/// |
| 32 |
namespace DateManagement |
namespace DateManagement |
| 33 |
{ |
{ |
|
class DatePhrase |
|
| 34 |
/** @memo Implements the GEDCOM 5.5 DATE_PHRASE primitive element |
/** @memo Implements the GEDCOM 5.5 DATE_PHRASE primitive element |
| 35 |
*/ |
**/ |
| 36 |
|
class DatePhrase |
| 37 |
{ |
{ |
| 38 |
public: |
public: |
| 39 |
|
///@name Constructors |
| 40 |
|
//@{ |
| 41 |
|
/// |
| 42 |
DatePhrase(std::string const &value = "") : |
DatePhrase(std::string const &value = "") : |
| 43 |
_value(value) |
_value(value) |
| 44 |
{ }; |
{ }; |
| 45 |
|
//@} |
| 46 |
|
///@name Accessors (get) |
| 47 |
|
//@{ |
| 48 |
|
/// |
| 49 |
std::string const & getDisplayValue(void) const; |
std::string const & getDisplayValue(void) const; |
| 50 |
|
//@} |
| 51 |
private: |
private: |
| 52 |
std::string _value; |
std::string _value; |
| 53 |
}; |
}; |