Class: Quickfix::DetachmentPoint

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DetachmentPoint

Returns a new instance of DetachmentPoint.



71
72
73
74
75
76
77
# File 'lib/quickfix_fields.rb', line 71

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

Class Method Details

.fieldObject



68
69
70
# File 'lib/quickfix_fields.rb', line 68

def DetachmentPoint.field
  return 1458
end