Class: Quickfix::PossDupFlag

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BoolField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ PossDupFlag

Returns a new instance of 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

Class Method Details

.fieldObject



107
108
109
# File 'lib/quickfix_fields.rb', line 107

def PossDupFlag.field
  return 43
end