Class: Quickfix::ClearedIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ClearedIndicator

Returns a new instance of ClearedIndicator.



24004
24005
24006
24007
24008
24009
24010
# File 'lib/quickfix_fields.rb', line 24004

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