00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __UT_ArenaInfo__
00022 #define __UT_ArenaInfo__
00023
00024 #include "UT_API.h"
00025 #include <stddef.h>
00026 #include <iostream.h>
00027
00028 class UT_API UT_ArenaInfo
00029 {
00030 public:
00031 static size_t arenaSize();
00032 static size_t totalInUse();
00033 static void outputUsage(ostream &os, bool output_in_bytes=false);
00034
00035 protected:
00036
00037 private:
00038 };
00039
00040 #endif