00001
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef TDSPINT_H
00019 #define TDSPINT_H
00020
00021 #include <TRint.h>
00022 #include <TString.h>
00023
00024
00029 class TDSPInt : public TRint {
00030
00031 protected:
00032
00033 static TString fVersionStr;
00034
00035 public:
00036 TDSPInt(const char* appClassName, int* argc, char** argv, void* options = 0, int numOptions = 0, Bool_t noLogo = kFALSE);
00037 ~TDSPInt();
00038
00039 static TString &GetVersion() { return fVersionStr;};
00040
00041 virtual void PrintLogo();
00042
00043 ClassDef(TDSPInt,1)
00044
00045 };
00046
00047 Bool_t CheckEnter();
00048
00049 #endif