Class: Quickfix::LocationID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LocationID

Returns a new instance of LocationID.



3568
3569
3570
3571
3572
3573
3574
# File 'lib/quickfix_fields.rb', line 3568

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