Class: Quickfix::SendingTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SendingTime

Returns a new instance of SendingTime.



162
163
164
165
166
167
168
# File 'lib/quickfix_fields.rb', line 162

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