Class: Quickfix::ExpireTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExpireTime

Returns a new instance of ExpireTime.



2138
2139
2140
2141
2142
2143
2144
# File 'lib/quickfix_fields.rb', line 2138

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