Class: Quickfix::WaveNo

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ WaveNo

Returns a new instance of WaveNo.



10484
10485
10486
10487
10488
10489
10490
# File 'lib/quickfix_fields.rb', line 10484

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

Class Method Details

.fieldObject



10481
10482
10483
# File 'lib/quickfix_fields.rb', line 10481

def WaveNo.field
  return 105
end