Class: Quickfix::PegOffsetValue

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PegOffsetValue

Returns a new instance of PegOffsetValue.



929
930
931
932
933
934
935
# File 'lib/quickfix_fields.rb', line 929

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

Class Method Details

.fieldObject



926
927
928
# File 'lib/quickfix_fields.rb', line 926

def PegOffsetValue.field
	return 211
end