Class: Quickfix::RefSubID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RefSubID

Returns a new instance of RefSubID.



12564
12565
12566
12567
12568
12569
12570
# File 'lib/quickfix_fields.rb', line 12564

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