Class: Quickfix::Text

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Text

Returns a new instance of Text.



3230
3231
3232
3233
3234
3235
3236
# File 'lib/quickfix_fields.rb', line 3230

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

Class Method Details

.fieldObject



3227
3228
3229
# File 'lib/quickfix_fields.rb', line 3227

def Text.field
  return 58
end