Class: Quickfix::AllocID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AllocID

Returns a new instance of AllocID.



9275
9276
9277
9278
9279
9280
9281
# File 'lib/quickfix_fields.rb', line 9275

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

Class Method Details

.fieldObject



9272
9273
9274
# File 'lib/quickfix_fields.rb', line 9272

def AllocID.field
	return 70
end