Class: Quickfix::WaveNo

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ WaveNo

Returns a new instance of WaveNo.



1943
1944
1945
1946
1947
1948
1949
# File 'lib/quickfix_fields.rb', line 1943

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

Class Method Details

.fieldObject



1940
1941
1942
# File 'lib/quickfix_fields.rb', line 1940

def WaveNo.field
  return 105
end