Class: Quickfix::Side

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Side

Returns a new instance of Side.



9522
9523
9524
9525
9526
9527
9528
# File 'lib/quickfix_fields.rb', line 9522

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

Class Method Details

.fieldObject



9519
9520
9521
# File 'lib/quickfix_fields.rb', line 9519

def Side.field
  return 54
end