Class: Quickfix::BasisFeatureDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BasisFeatureDate

Returns a new instance of BasisFeatureDate.



6168
6169
6170
6171
6172
6173
6174
# File 'lib/quickfix_fields.rb', line 6168

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