Class: Quickfix::CollStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollStatus

Returns a new instance of CollStatus.



12304
12305
12306
12307
12308
12309
12310
# File 'lib/quickfix_fields.rb', line 12304

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