Changeset 12735 for trunk/Mars/mreport/MReport.h
- Timestamp:
- 12/22/11 15:46:36 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mreport/MReport.h
r8955 r12735 5 5 #include "MParContainer.h" 6 6 #endif 7 #ifndef MARS_MTime 7 8 #include "MTime.h" 9 #endif 10 11 namespace std 12 { 13 class fits; 14 } 8 15 class MTime; 9 16 class MParList; … … 30 37 31 38 virtual Bool_t SetupReading(MParList &plist); 39 virtual Bool_t SetupReadingFits(std::fits &fits) { return kFALSE; } 32 40 virtual Int_t InterpreteBody(TString &str, Int_t ver); 33 41 34 42 Int_t Interprete(TString &str, const MTime &start, const MTime &stop, const Int_t ver); 43 virtual Int_t InterpreteFits(const std::fits &fits) { return kFALSE; } 35 44 Bool_t CheckIdentifier(TString &str) const 36 45 { … … 49 58 Double_t GetMjd() const { return fTime ? fTime->GetMjd() : -1; } 50 59 60 MTime *GetTime() { return fTime; } 61 51 62 ClassDef(MReport, 1) // Base class for control reports 52 63 };
Note:
See TracChangeset
for help on using the changeset viewer.