Class: Quickfix::ExpType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExpType

Returns a new instance of ExpType.



13240
13241
13242
13243
13244
13245
13246
# File 'lib/quickfix_fields.rb', line 13240

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