Class: Quickfix::ApplVerID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ApplVerID

Returns a new instance of ApplVerID.



734
735
736
737
738
739
740
# File 'lib/quickfix_fields.rb', line 734

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