Class: Quickfix::NoStipulations

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoStipulations

Returns a new instance of NoStipulations.



5817
5818
5819
5820
5821
5822
5823
# File 'lib/quickfix_fields.rb', line 5817

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