Class: Quickfix::Shares

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Shares

Returns a new instance of Shares.



18973
18974
18975
18976
18977
18978
18979
# File 'lib/quickfix_fields.rb', line 18973

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

Class Method Details

.fieldObject



18970
18971
18972
# File 'lib/quickfix_fields.rb', line 18970

def Shares.field
  return 53
end