Class: Quickfix::OptAttribute

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OptAttribute

Returns a new instance of OptAttribute.



3087
3088
3089
3090
3091
3092
3093
# File 'lib/quickfix_fields.rb', line 3087

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