Class: Quickfix::DisplayMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DisplayMethod

Returns a new instance of DisplayMethod.



14488
14489
14490
14491
14492
14493
14494
# File 'lib/quickfix_fields.rb', line 14488

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