Class: Quickfix::OrdType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrdType

Returns a new instance of OrdType.



1332
1333
1334
1335
1336
1337
1338
# File 'lib/quickfix_fields.rb', line 1332

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