Class: Quickfix::CheckSum
- Inherits:
-
CheckSumField
- Object
- CheckSumField
- Quickfix::CheckSum
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ CheckSum
constructor
A new instance of CheckSum.
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
.field ⇒ Object
18437 18438 18439 |
# File 'lib/quickfix_fields.rb', line 18437 def CheckSum.field return 10 end |