Class: Quickfix::HopRefID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ HopRefID

Returns a new instance of HopRefID.



695
696
697
698
699
700
701
# File 'lib/quickfix_fields.rb', line 695

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