Class: Quickfix::CommType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CommType

Returns a new instance of CommType.



15164
15165
15166
15167
15168
15169
15170
# File 'lib/quickfix_fields.rb', line 15164

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

Class Method Details

.fieldObject



15161
15162
15163
# File 'lib/quickfix_fields.rb', line 15161

def CommType.field
	return 13
end