Class: Quickfix::IRSDirection

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ IRSDirection

Returns a new instance of IRSDirection.



25317
25318
25319
25320
25321
25322
25323
# File 'lib/quickfix_fields.rb', line 25317

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