Class: Quickfix::InstrAttribType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ InstrAttribType

Returns a new instance of InstrAttribType.



11797
11798
11799
11800
11801
11802
11803
# File 'lib/quickfix_fields.rb', line 11797

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