Method: Quickfix::RegistStatus#initialize

Defined in:
lib/quickfix_fields.rb

#initialize(data = nil) ⇒ RegistStatus

Returns a new instance of RegistStatus.



11212
11213
11214
11215
11216
11217
11218
# File 'lib/quickfix_fields.rb', line 11212

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