Ignore:
Timestamp:
11/06/11 03:03:13 (13 years ago)
Author:
tbretz
Message:
Fixed some missing STL includes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mcore/DrsCalib.h

    r12343 r12423  
    11#ifndef MARS_DrsCalib
    22#define MARS_DrsCalib
     3
     4#include <math.h>   // fabs
     5#include <errno.h>  // errno
    36
    47#include "fits.h"
     
    393396    }
    394397
    395     string ReadFitsImp(const string &str, std::vector<float> &vec)
     398    std::string ReadFitsImp(const std::string &str, std::vector<float> &vec)
    396399    {
    397400        std::fits file(str);
     
    486489        fStep++;
    487490
    488         return string();
    489     }
    490     string ReadFitsImp(const string &str)
     491        return std::string();
     492    }
     493
     494    std::string ReadFitsImp(const std::string &str)
    491495    {
    492496        std::vector<float> vec;
Note: See TracChangeset for help on using the changeset viewer.