Class: Quickfix::NoAllocs

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoAllocs

Returns a new instance of NoAllocs.



16997
16998
16999
17000
17001
17002
17003
# File 'lib/quickfix_fields.rb', line 16997

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

Class Method Details

.fieldObject



16994
16995
16996
# File 'lib/quickfix_fields.rb', line 16994

def NoAllocs.field
  return 78
end