Class: Quickfix::DeliverToCompID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DeliverToCompID

Returns a new instance of DeliverToCompID.



396
397
398
399
400
401
402
# File 'lib/quickfix_fields.rb', line 396

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