Class: Quickfix::RawDataLength

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RawDataLength

Returns a new instance of RawDataLength.



12070
12071
12072
12073
12074
12075
12076
# File 'lib/quickfix_fields.rb', line 12070

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

Class Method Details

.fieldObject



12067
12068
12069
# File 'lib/quickfix_fields.rb', line 12067

def RawDataLength.field
	return 95
end