Class: Quickfix::CollStatus

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



12301
12302
12303
# File 'lib/quickfix_fields.rb', line 12301

def CollStatus.field
	return 910
end