Class: Quickfix::OrigClOrdID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrigClOrdID

Returns a new instance of OrigClOrdID.



1345
1346
1347
1348
1349
1350
1351
# File 'lib/quickfix_fields.rb', line 1345

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