Class: Quickfix::StrikeTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeTime

Returns a new instance of StrikeTime.



5544
5545
5546
5547
5548
5549
5550
# File 'lib/quickfix_fields.rb', line 5544

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