Class: Quickfix::Adjustment

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) ⇒ Adjustment

Returns a new instance of Adjustment.



4231
4232
4233
4234
4235
4236
4237
# File 'lib/quickfix_fields.rb', line 4231

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

Class Method Details

.fieldObject



4228
4229
4230
# File 'lib/quickfix_fields.rb', line 4228

def Adjustment.field
  return 334
end