Class: Quickfix::TransactTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransactTime

Returns a new instance of TransactTime.



1475
1476
1477
1478
1479
1480
1481
# File 'lib/quickfix_fields.rb', line 1475

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