Class: Quickfix::OrigCrossID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrigCrossID

Returns a new instance of OrigCrossID.



7546
7547
7548
7549
7550
7551
7552
# File 'lib/quickfix_fields.rb', line 7546

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