Class: Quickfix::MsgDirection

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MsgDirection

Returns a new instance of MsgDirection.



4790
4791
4792
4793
4794
4795
4796
# File 'lib/quickfix_fields.rb', line 4790

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