Class: Quickfix::TrdSubType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TrdSubType

Returns a new instance of TrdSubType.



11264
11265
11266
11267
11268
11269
11270
# File 'lib/quickfix_fields.rb', line 11264

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