Class: Quickfix::RawData

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RawData

Returns a new instance of RawData.



422
423
424
425
426
427
428
# File 'lib/quickfix_fields.rb', line 422

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

Class Method Details

.fieldObject



419
420
421
# File 'lib/quickfix_fields.rb', line 419

def RawData.field
	return 96
end