Class: Quickfix::NoUnderlyingEvents

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



25938
25939
25940
# File 'lib/quickfix_fields.rb', line 25938

def NoUnderlyingEvents.field
  return 1981
end