Class: Quickfix::FutSettDate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ FutSettDate

Returns a new instance of FutSettDate.



1527
1528
1529
1530
1531
1532
1533
# File 'lib/quickfix_fields.rb', line 1527

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