Class: Quickfix::CommCurrency

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) ⇒ CommCurrency

Returns a new instance of CommCurrency.



6623
6624
6625
6626
6627
6628
6629
# File 'lib/quickfix_fields.rb', line 6623

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

Class Method Details

.fieldObject



6620
6621
6622
# File 'lib/quickfix_fields.rb', line 6620

def CommCurrency.field
  return 479
end