Class: Quickfix::ListNoOrds

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ListNoOrds

Returns a new instance of ListNoOrds.



1579
1580
1581
1582
1583
1584
1585
# File 'lib/quickfix_fields.rb', line 1579

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