Class: Quickfix::EncodedSubject

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) ⇒ EncodedSubject

Returns a new instance of EncodedSubject.



4491
4492
4493
4494
4495
4496
4497
# File 'lib/quickfix_fields.rb', line 4491

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

Class Method Details

.fieldObject



4488
4489
4490
# File 'lib/quickfix_fields.rb', line 4488

def EncodedSubject.field
	return 357
end