Class: Quickfix::LastForwardPoints

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastForwardPoints

Returns a new instance of LastForwardPoints.



2944
2945
2946
2947
2948
2949
2950
# File 'lib/quickfix_fields.rb', line 2944

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