Class: Quickfix::ApplExtID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ApplExtID

Returns a new instance of ApplExtID.



799
800
801
802
803
804
805
# File 'lib/quickfix_fields.rb', line 799

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