00001 /*************************************************************************** 00002 * 00003 * $Id: StMem.h,v 1.2 2001/03/05 00:50:56 perev Exp $ 00004 * 00005 * Author: Victor Perev, Jul 2000 00006 *************************************************************************** 00007 * 00008 * Description: 00009 * Simplified version of StMemoryInfo class of Thomas Ullrich 00010 *************************************************************************** 00011 * 00012 * 00013 **************************************************************************/ 00014 #ifndef StMem_h 00015 #define StMem_h 00016 00017 class StMem { 00018 friend class nobody; 00019 public: 00020 static double Used(); 00021 static double ESize(); 00022 static void Print(const char *tit=""); 00023 private: 00024 StMem(){}; 00025 ~StMem(){}; 00026 00027 static double fUsed; 00028 /* 00029 ClassDef(StMem,0) 00030 */ 00031 }; 00032 00033 #endif
1.5.9