Class: Quickfix::RawDataLength

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

Instance Method Summary collapse

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