Changeset 3572 in Sophya for trunk/SophyaExt/FitsIOServer/fabtcolread.h
- Timestamp:
- Feb 7, 2009, 10:50:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/fabtcolread.h
r3493 r3572 48 48 void Print(void); 49 49 50 static double ReadKey(fitsfile *fitsptr,c har *keyname);51 static long ReadKeyL(fitsfile *fitsptr,c har *keyname);52 static LONGLONG ReadKeyLL(fitsfile *fitsptr,c har *keyname);53 static string ReadKeyS(fitsfile *fitsptr,c har *keyname);50 static double ReadKey(fitsfile *fitsptr,const char *keyname); 51 static long ReadKeyL(fitsfile *fitsptr,const char *keyname); 52 static LONGLONG ReadKeyLL(fitsfile *fitsptr,const char *keyname); 53 static string ReadKeyS(fitsfile *fitsptr,const char *keyname); 54 54 static void printerror(int sta); 55 55 … … 78 78 void ChangeBuffer(long blen=100,long bsens=1); 79 79 80 double ReadKey(c har *keyname);81 long ReadKeyL(c har *keyname);82 LONGLONG ReadKeyLL(c har *keyname);83 string ReadKeyS(c har *keyname);80 double ReadKey(const char *keyname); 81 long ReadKeyL(const char *keyname); 82 LONGLONG ReadKeyLL(const char *keyname); 83 string ReadKeyS(const char *keyname); 84 84 85 85 double Read(LONGLONG n,bool usebuffer=true); … … 195 195 virtual ~FitsImg2DRd(); 196 196 197 double ReadKey(c har *keyname);198 long ReadKeyL(c har *keyname);199 LONGLONG ReadKeyLL(c har *keyname);200 string ReadKeyS(c har *keyname);197 double ReadKey(const char *keyname); 198 long ReadKeyL(const char *keyname); 199 LONGLONG ReadKeyLL(const char *keyname); 200 string ReadKeyS(const char *keyname); 201 201 202 202 LONGLONG Read(TMatrix<uint_2>& data); … … 260 260 virtual ~FitsImg3DRd(); 261 261 262 double ReadKey(c har *keyname);263 long ReadKeyL(c har *keyname);264 LONGLONG ReadKeyLL(c har *keyname);265 string ReadKeyS(c har *keyname);262 double ReadKey(const char *keyname); 263 long ReadKeyL(const char *keyname); 264 LONGLONG ReadKeyLL(const char *keyname); 265 string ReadKeyS(const char *keyname); 266 266 267 267 LONGLONG Read(TArray<uint_2>& data);
Note:
See TracChangeset
for help on using the changeset viewer.