Class: Quickfix::CxlType

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) ⇒ CxlType

Returns a new instance of CxlType.



2125
2126
2127
2128
2129
2130
2131
# File 'lib/quickfix_fields.rb', line 2125

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

Class Method Details

.fieldObject



2122
2123
2124
# File 'lib/quickfix_fields.rb', line 2122

def CxlType.field
	return 125
end