Class: Quickfix::TestReqID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TestReqID

Returns a new instance of TestReqID.



331
332
333
334
335
336
337
# File 'lib/quickfix_fields.rb', line 331

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