Class: Quickfix::PossDupFlag

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PossDupFlag



110
111
112
113
114
115
116
# File 'lib/quickfix_fields.rb', line 110

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