Changeset 2479 in Sophya for trunk/SophyaLib/SkyT
- Timestamp:
- Dec 7, 2003, 12:59:21 AM (22 years ago)
- Location:
- trunk/SophyaLib/SkyT
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SkyT/gaussfilt.h
r830 r2479 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: gaussfilt.h,v 1. 5 2000-04-06 17:09:39ansari Exp $4 // $Id: gaussfilt.h,v 1.6 2003-12-06 23:59:21 ansari Exp $ 5 5 // 6 6 // Description: … … 67 67 { ObjFileIO<GaussianFilter> fio(&obj); fio.Write(os); return(os);} 68 68 69 inline PInPersist& operator >> (PInPersist& os, GaussianFilter & obj)70 { ObjFileIO<GaussianFilter> fio(&obj); fio.Read(os); return(os);}69 inline PInPersist& operator >> (PInPersist& is, GaussianFilter & obj) 70 { ObjFileIO<GaussianFilter> fio(&obj); is.SkipToNextObject(); fio.Read(is); return(is);} 71 71 72 72 } // End of namespace -
trunk/SophyaLib/SkyT/specrespvector.h
r2322 r2479 2 2 //-------------------------------------------------------------------------- 3 3 // File and Version Information: 4 // $Id: specrespvector.h,v 1. 6 2003-02-11 15:31:07 cmvExp $4 // $Id: specrespvector.h,v 1.7 2003-12-06 23:59:21 ansari Exp $ 5 5 // 6 6 // Description: … … 70 70 { ObjFileIO<SpecRespVec> fio(&obj); fio.Write(os); return(os);} 71 71 72 inline PInPersist& operator >> (PInPersist& os, SpecRespVec & obj)73 { ObjFileIO<SpecRespVec> fio(&obj); fio.Read(os); return(os);}72 inline PInPersist& operator >> (PInPersist& is, SpecRespVec & obj) 73 { ObjFileIO<SpecRespVec> fio(&obj); is.SkipToNextObject(); fio.Read(is); return(is);} 74 74 75 75 } // End of namespace
Note:
See TracChangeset
for help on using the changeset viewer.