Class: Quickfix::ApplID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ApplID

Returns a new instance of ApplID.



15736
15737
15738
15739
15740
15741
15742
# File 'lib/quickfix_fields.rb', line 15736

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