Class: Quickfix::NoStrikeRules

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NoStrikeRules

Returns a new instance of NoStrikeRules.



16035
16036
16037
16038
16039
16040
16041
# File 'lib/quickfix_fields.rb', line 16035

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

Class Method Details

.fieldObject



16032
16033
16034
# File 'lib/quickfix_fields.rb', line 16032

def NoStrikeRules.field
	return 1201
end