Class: Quickfix::GapFillFlag

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ GapFillFlag

Returns a new instance of GapFillFlag.



16685
16686
16687
16688
16689
16690
16691
# File 'lib/quickfix_fields.rb', line 16685

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

Class Method Details

.fieldObject



16682
16683
16684
# File 'lib/quickfix_fields.rb', line 16682

def GapFillFlag.field
	return 123
end