Class: Quickfix::MarginDirection

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MarginDirection

Returns a new instance of MarginDirection.



77720
77721
77722
77723
77724
77725
77726
# File 'lib/quickfix_fields.rb', line 77720

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