Class: Quickfix::RawDataLength

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

Returns a new instance of RawDataLength.



266
267
268
269
270
271
272
# File 'lib/quickfix_fields.rb', line 266

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

Class Method Details

.fieldObject



263
264
265
# File 'lib/quickfix_fields.rb', line 263

def RawDataLength.field
	return 95
end