Class: Quickfix::NoAttachments

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoAttachments

Returns a new instance of NoAttachments.



40449
40450
40451
40452
40453
40454
40455
# File 'lib/quickfix_fields.rb', line 40449

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