Class: Quickfix::Side

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Side

Returns a new instance of Side.



1436
1437
1438
1439
1440
1441
1442
# File 'lib/quickfix_fields.rb', line 1436

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