Class: Quickfix::MatchIncrement

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MatchIncrement

Returns a new instance of MatchIncrement.



2632
2633
2634
2635
2636
2637
2638
# File 'lib/quickfix_fields.rb', line 2632

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

Class Method Details

.fieldObject



2629
2630
2631
# File 'lib/quickfix_fields.rb', line 2629

def MatchIncrement.field
	return 1089
end