Changeset 2898 in Sophya for trunk/SophyaExt/FitsIOServer/fitsmanager.h
- Timestamp:
- Jan 13, 2006, 7:26:40 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitsmanager.h
r2895 r2898 4 4 #include "machdefs.h" 5 5 #include <string> 6 #include <iostream> 6 7 #include "fitsinoutfile.h" 7 8 … … 26 27 //! Finds the appropriate reader for the current HDU and reads the data form \b is 27 28 static FitsHandlerInterface * Read(FitsInOutFile& is); 29 //! Scans the fits file and prints information about each HDU on formatted stream \b os 30 static int ScanFile(string filename, ostream& os, int slev=0); 31 //! Scans the fits file and prints information about each HDU on \b cout 32 static inline int ScanFile(string filename, int slev=0) 33 { return ScanFile(filename, cout, slev); } 34 28 35 protected: 29 36 //! Finds the appropriate handler for the object \b o in the list of registered handlers.
Note:
See TracChangeset
for help on using the changeset viewer.