Class: Quickfix::CheckSum

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CheckSumField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ CheckSum

Returns a new instance of CheckSum.



45
46
47
48
49
50
51
# File 'lib/quickfix_fields.rb', line 45

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

Class Method Details

.fieldObject



42
43
44
# File 'lib/quickfix_fields.rb', line 42

def CheckSum.field
	return 10
end