Changeset 10694 for trunk/FACT++


Ignore:
Timestamp:
05/13/11 11:25:10 (13 years ago)
Author:
tbretz
Message:
Removed namespace defintion from header; moved obsolete includes to source file.
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Fits.cc

    r10529 r10694  
    1818#include "Time.h"
    1919#include "Converter.h"
     20#include "MessageImp.h"
    2021
    2122//for file stats
     
    2324
    2425using namespace std;
     26using namespace CCfits;
    2527
    2628// --------------------------------------------------------------------------
  • trunk/FACT++/src/Fits.h

    r10489 r10694  
    66
    77#include "Description.h"
    8 #include "MessageImp.h"
    9 using namespace CCfits;
    108
    119class Converter;
     10class MessageImp;
    1211
    1312class Fits
     
    1514        private:
    1615                ///The CCfits object to the FITS file
    17                 FITS* fFile;
     16                CCfits::FITS* fFile;
    1817                ///Flag indicating whether the FITS object should be managed internally or not.
    1918                bool fOwner;
    2019                ///The CCfits Table
    21                 Table* fTable;
     20                CCfits::Table* fTable;
    2221                ///The current number of Rows in the table
    2322                int fNumRows;
     
    9089
    9190                ///Opens a FITS file
    92                 void Open(const std::string& fileName, const std::string& tableName, FITS* file, int* fitsCounter, std::ostream& out);
     91                void Open(const std::string& fileName, const std::string& tableName, CCfits::FITS* file, int* fitsCounter, std::ostream& out);
    9392
    9493                ///Write one line of data. Use the given converter.
Note: See TracChangeset for help on using the changeset viewer.