Class: Quickfix::IDSource

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ IDSource

Returns a new instance of IDSource.



4673
4674
4675
4676
4677
4678
4679
# File 'lib/quickfix_fields.rb', line 4673

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

Class Method Details

.fieldObject



4670
4671
4672
# File 'lib/quickfix_fields.rb', line 4670

def IDSource.field
  return 22
end