Class: Quickfix::StatusValue

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) ⇒ StatusValue

Returns a new instance of StatusValue.



12525
12526
12527
12528
12529
12530
12531
# File 'lib/quickfix_fields.rb', line 12525

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

Class Method Details

.fieldObject



12522
12523
12524
# File 'lib/quickfix_fields.rb', line 12522

def StatusValue.field
	return 928
end