Class: Quickfix::Headline

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

Returns a new instance of Headline.



2333
2334
2335
2336
2337
2338
2339
# File 'lib/quickfix_fields.rb', line 2333

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

Class Method Details

.fieldObject



2330
2331
2332
# File 'lib/quickfix_fields.rb', line 2330

def Headline.field
	return 148
end