Class: Quickfix::SideExecRefID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SideExecRefID

Returns a new instance of SideExecRefID.



24862
24863
24864
24865
24866
24867
24868
# File 'lib/quickfix_fields.rb', line 24862

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