Class: Quickfix::HeartBtInt

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ HeartBtInt

Returns a new instance of HeartBtInt.



3022
3023
3024
3025
3026
3027
3028
# File 'lib/quickfix_fields.rb', line 3022

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

Class Method Details

.fieldObject



3019
3020
3021
# File 'lib/quickfix_fields.rb', line 3019

def HeartBtInt.field
	return 108
end