Class: Quickfix::UnitOfMeasure

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnitOfMeasure

Returns a new instance of UnitOfMeasure.



15164
15165
15166
15167
15168
15169
15170
# File 'lib/quickfix_fields.rb', line 15164

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