Class: Quickfix::GapFillFlag

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

Instance Method Summary collapse

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