// $Id: AEVJobRep.h 2088 2008-11-23 20:26:46Z matevz $ // Copyright (C) 1999-2008, Matevz Tadel. All rights reserved. // This file is part of GLED, released under GNU General Public License version 2. // For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/. #ifndef AliEnViz_AEVJobRep_H #define AliEnViz_AEVJobRep_H #include class AEVJobRep : public ZGlass { MAC_RNR_FRIENDS(AEVJobRep); friend class AEVMlClient; private: void _init(); protected: TString mJobname; // X{GS} 7 TextOut() TString mUsername; // X{GS} 7 TextOut() TString mStatus; // X{GS} 7 TextOut() TString mDateStr; // X{GS} 7 TextOut() public: AEVJobRep(const Text_t* n="AEVJobRep", const Text_t* t=0) : ZGlass(n,t) { _init(); } void FormatTitle(); #include "AEVJobRep.h7" ClassDef(AEVJobRep, 1); }; // endclass AEVJobRep #endif