Class: Quickfix::CheckSum

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CheckSum

Returns a new instance of CheckSum.



18440
18441
18442
18443
18444
18445
18446
# File 'lib/quickfix_fields.rb', line 18440

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

Class Method Details

.fieldObject



18437
18438
18439
# File 'lib/quickfix_fields.rb', line 18437

def CheckSum.field
	return 10
end