class GEDCOM_DATE_PARSER::GEDDateGeneral
General Date Class
Attributes
day[RW]
flags[RW]
month[RW]
year[RW]
Public Class Methods
new(flg, d, m, y)
click to toggle source
# File lib/gedcom_ruby/date_parser.rb, line 394 def initialize(flg, d, m, y) @flags = flg @day = d @month = m @year = y end