Class: Quickfix::StreamVersion

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

Returns a new instance of StreamVersion.



70869
70870
70871
70872
70873
70874
70875
# File 'lib/quickfix_fields.rb', line 70869

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

Class Method Details

.fieldObject



70866
70867
70868
# File 'lib/quickfix_fields.rb', line 70866

def StreamVersion.field
	return 42784
end