Class: Quickfix::PositionEffect

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

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

Class Method Details

.fieldObject



5645
5646
5647
# File 'lib/quickfix_fields.rb', line 5645

def PositionEffect.field
	return 77
end