/[ghosts]/ghosts/gedcomparser/src/GEDCOMParser/DateManagement/DateValue.hh
ViewVC logotype

Diff of /ghosts/gedcomparser/src/GEDCOMParser/DateManagement/DateValue.hh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.3 by cpcp, Sun Oct 27 09:45:01 2002 UTC revision 1.1.2.4 by cpcp, Sun Oct 27 11:58:04 2002 UTC
# Line 58  namespace GEDCOMParser Line 58  namespace GEDCOMParser
58            e_Interpreted            e_Interpreted
59          };          };
60        typedef enum _enumDateValueTypes enumDateValueTypes;              typedef enum _enumDateValueTypes enumDateValueTypes;      
61        DateValue(void) :        DateValue(void) :
62            _parsing_ko(true),
63          _raw_value(),          _raw_value(),
64          _type(e_Null),          _type(e_Null),
65          _date(0),          _date(0),
# Line 69  namespace GEDCOMParser Line 70  namespace GEDCOMParser
70          return;          return;
71        };        };
72        DateValue(DateValue const &d) :        DateValue(DateValue const &d) :
73            _parsing_ko(d._parsing_ko),
74          _raw_value(d._raw_value),          _raw_value(d._raw_value),
75          _type(d._type),          _type(d._type),
76          _date(0),          _date(0),
# Line 108  namespace GEDCOMParser Line 110  namespace GEDCOMParser
110        void setRange(GEDCOMParser::DateManagement::Range const &range);        void setRange(GEDCOMParser::DateManagement::Range const &range);
111        ///        ///
112        void setValue(std::string const &value);        void setValue(std::string const &value);
113          ///
114          void setParseError(bool);
115        //@}        //@}
116                
117        ///@name Accessors (get)        ///@name Accessors (get)
# Line 116  namespace GEDCOMParser Line 120  namespace GEDCOMParser
120        std::string const getDisplayValue(void) const;        std::string const getDisplayValue(void) const;
121        //@}        //@}
122      private:      private:
123          bool _parsing_ko;
124        std::string _raw_value;        std::string _raw_value;
125        enumDateValueTypes _type;        enumDateValueTypes _type;
126        GEDCOMParser::DateManagement::Date * _date;        GEDCOMParser::DateManagement::Date * _date;

Legend:
Removed from v.1.1.2.3  
changed lines
  Added in v.1.1.2.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26