Class: Quickfix::MatchingDataPointType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MatchingDataPointType

Returns a new instance of MatchingDataPointType.



76849
76850
76851
76852
76853
76854
76855
# File 'lib/quickfix_fields.rb', line 76849

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