Class: Quickfix::RegistDtls

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RegistDtls

Returns a new instance of RegistDtls.



9054
9055
9056
9057
9058
9059
9060
# File 'lib/quickfix_fields.rb', line 9054

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