Class: Quickfix::MatchingDataPointIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MatchingDataPointIndicator

Returns a new instance of MatchingDataPointIndicator.



76823
76824
76825
76826
76827
76828
76829
# File 'lib/quickfix_fields.rb', line 76823

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