Class: Quickfix::EventTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EventTime

Returns a new instance of EventTime.



15294
15295
15296
15297
15298
15299
15300
# File 'lib/quickfix_fields.rb', line 15294

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