Class: Quickfix::ExecID

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

Returns a new instance of ExecID.



1072
1073
1074
1075
1076
1077
1078
# File 'lib/quickfix_fields.rb', line 1072

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

Class Method Details

.fieldObject



1069
1070
1071
# File 'lib/quickfix_fields.rb', line 1069

def ExecID.field
  return 17
end