Class: Quickfix::HeartBtInt

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

Returns a new instance of HeartBtInt.



318
319
320
321
322
323
324
# File 'lib/quickfix_fields.rb', line 318

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

Class Method Details

.fieldObject



315
316
317
# File 'lib/quickfix_fields.rb', line 315

def HeartBtInt.field
	return 108
end