- Timestamp:
- 05/13/11 11:25:10 (14 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Fits.cc
r10529 r10694 18 18 #include "Time.h" 19 19 #include "Converter.h" 20 #include "MessageImp.h" 20 21 21 22 //for file stats … … 23 24 24 25 using namespace std; 26 using namespace CCfits; 25 27 26 28 // -------------------------------------------------------------------------- -
trunk/FACT++/src/Fits.h
r10489 r10694 6 6 7 7 #include "Description.h" 8 #include "MessageImp.h"9 using namespace CCfits;10 8 11 9 class Converter; 10 class MessageImp; 12 11 13 12 class Fits … … 15 14 private: 16 15 ///The CCfits object to the FITS file 17 16 CCfits::FITS* fFile; 18 17 ///Flag indicating whether the FITS object should be managed internally or not. 19 18 bool fOwner; 20 19 ///The CCfits Table 21 Table* fTable;20 CCfits::Table* fTable; 22 21 ///The current number of Rows in the table 23 22 int fNumRows; … … 90 89 91 90 ///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); 93 92 94 93 ///Write one line of data. Use the given converter.
Note:
See TracChangeset
for help on using the changeset viewer.