Class: Quickfix::CommType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CommType

Returns a new instance of CommType.



1033
1034
1035
1036
1037
1038
1039
# File 'lib/quickfix_fields.rb', line 1033

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