Class: Quickfix::MDEntryType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MDEntryType

Returns a new instance of MDEntryType.



3386
3387
3388
3389
3390
3391
3392
# File 'lib/quickfix_fields.rb', line 3386

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