Class: Quickfix::TargetSubID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TargetSubID

Returns a new instance of TargetSubID.



188
189
190
191
192
193
194
# File 'lib/quickfix_fields.rb', line 188

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

Class Method Details

.fieldObject



185
186
187
# File 'lib/quickfix_fields.rb', line 185

def TargetSubID.field
	return 57
end