Class: Quickfix::GapFillFlag

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) ⇒ GapFillFlag

Returns a new instance of GapFillFlag.



383
384
385
386
387
388
389
# File 'lib/quickfix_fields.rb', line 383

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

Class Method Details

.fieldObject



380
381
382
# File 'lib/quickfix_fields.rb', line 380

def GapFillFlag.field
  return 123
end