Changeset 1322 in Sophya
- Timestamp:
- Nov 13, 2000, 5:01:55 PM (25 years ago)
- Location:
- trunk/SophyaExt/FitsIOServer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fitslocalmap.h
r1181 r1322 42 42 ////////////////////////////////////////////////////////////////// 43 43 44 template <class T> 45 inline FitsOutFile& operator << (FitsOutFile& fios, LocalMap<T> & lm) 46 { FITS_LocalMap<T> fih(&lm); fih.Write(fios); return (fios); } 47 48 template <class T> 49 inline FitsInFile& operator >> (FitsInFile& fiis, LocalMap<T> & lm) 50 { FITS_LocalMap<T> fih(&lm); fih.Read(fiis); return (fiis); } 44 51 45 52 } // Fin du namespace -
trunk/SophyaExt/FitsIOServer/fitsspherehealpix.h
r1300 r1322 51 51 52 52 template <class T> 53 inline FitsInFile& operator >> (FitsInFile& fiis, SphereHEALPix<T> & arr)53 inline FitsInFile& operator >> (FitsInFile& fiis, SphereHEALPix<T> & sph) 54 54 { FITS_SphereHEALPix<T> fih(&sph); fih.Read(fiis); return (fiis); } 55 55
Note:
See TracChangeset
for help on using the changeset viewer.