Class: Quickfix::ResetSeqNumFlag

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ResetSeqNumFlag

Returns a new instance of ResetSeqNumFlag.



422
423
424
425
426
427
428
# File 'lib/quickfix_fields.rb', line 422

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