Class: Quickfix::OptAttribute

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

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

Class Method Details

.fieldObject



3084
3085
3086
# File 'lib/quickfix_fields.rb', line 3084

def OptAttribute.field
	return 206
end