Class: Quickfix::Subject

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Subject

Returns a new instance of Subject.



10731
10732
10733
10734
10735
10736
10737
# File 'lib/quickfix_fields.rb', line 10731

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

Class Method Details

.fieldObject



10728
10729
10730
# File 'lib/quickfix_fields.rb', line 10728

def Subject.field
	return 147
end