Class: Quickfix::SecondaryAssetClass

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryAssetClass



25889
25890
25891
25892
25893
25894
25895
# File 'lib/quickfix_fields.rb', line 25889

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