Class: Quickfix::StrikeValue

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ StrikeValue

Returns a new instance of StrikeValue.



13058
13059
13060
13061
13062
13063
13064
# File 'lib/quickfix_fields.rb', line 13058

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

Class Method Details

.fieldObject



13055
13056
13057
# File 'lib/quickfix_fields.rb', line 13055

def StrikeValue.field
	return 968
end