Class: Quickfix::PositionEffect

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PositionEffect

Returns a new instance of PositionEffect.



5648
5649
5650
5651
5652
5653
5654
# File 'lib/quickfix_fields.rb', line 5648

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