Class: Quickfix::FirmGroupID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ FirmGroupID

Returns a new instance of FirmGroupID.



22444
22445
22446
22447
22448
22449
22450
# File 'lib/quickfix_fields.rb', line 22444

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