Class: Quickfix::NoUnderlyingEvents

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoUnderlyingEvents

Returns a new instance of NoUnderlyingEvents.



25941
25942
25943
25944
25945
25946
25947
# File 'lib/quickfix_fields.rb', line 25941

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