Class: Quickfix::DatedDate

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DatedDate

Returns a new instance of DatedDate.



11823
11824
11825
11826
11827
11828
11829
# File 'lib/quickfix_fields.rb', line 11823

def initialize(data = nil)
	if( data == nil )
		super(873)
	else
		super(873, data)
	end
end