Class: Quickfix::EncodedHeadline

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

Returns a new instance of EncodedHeadline.



4517
4518
4519
4520
4521
4522
4523
# File 'lib/quickfix_fields.rb', line 4517

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

Class Method Details

.fieldObject



4514
4515
4516
# File 'lib/quickfix_fields.rb', line 4514

def EncodedHeadline.field
	return 359
end