class GEDCOM_DATE_PARSER::GEDDate

Attributes

data[RW]
flags[RW]
type[RW]

Public Class Methods

new(type, flags, data) click to toggle source
# File lib/gedcom_ruby/date_parser.rb, line 404
def initialize(type, flags, data)
  @type = type
  @flags = flags
  @data = data  # Data should be either a string, Gregorian date or General Date
end