Class: Quickfix::ExecType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExecType

Returns a new instance of ExecType.



2359
2360
2361
2362
2363
2364
2365
# File 'lib/quickfix_fields.rb', line 2359

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