00001
00002 #ifndef XANA_TOOLKIT
00003 #define XANA_TOOLKIT
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 class TString;
00015
00016 #include <iostream>
00017 #include <iomanip>
00018
00019
00020 class xana
00021 {
00022
00023 public:
00024 static std::ostream & out( int level ) ;
00025 static int threshold() ;
00026 static void setVerbose(int thresh);
00027 static TString getXANALocation();
00028
00029 private:
00030 static int thresh_;
00031 } ;
00032
00033
00034 #endif
00035
00036
00037