Class: Quickfix::AdvRefID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AdvRefID

Returns a new instance of AdvRefID.



955
956
957
958
959
960
961
# File 'lib/quickfix_fields.rb', line 955

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