Ignore:
Timestamp:
01/06/15 14:17:01 (10 years ago)
Author:
smueller
Message:
fields of class MMatrix are now initialized in a method of MMatrix rather than in the class header to support pre C++11 standards
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/removing_cpp11_features/mfileio/MMatrix.cc

    r18009 r18087  
    4343    fTitle = title ? title :
    4444    "Parameter container storing a vector of vectors to hold floating numbers";
     45       
     46    initialize();
     47}
     48//------------------------------------------------------------------------------
     49void MMatrix::initialize() {
     50    fDelimiter = ',';
     51    fComment = '#';
     52    fFileName = "";
     53    fLineNumber = 0;
    4554}
    4655//------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.