Class: Quickfix::LegSymbol

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegSymbol

Returns a new instance of LegSymbol.



16178
16179
16180
16181
16182
16183
16184
# File 'lib/quickfix_fields.rb', line 16178

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

Class Method Details

.fieldObject



16175
16176
16177
# File 'lib/quickfix_fields.rb', line 16175

def LegSymbol.field
  return 600
end