00001 /*************************************************************************** 00002 utilities.h - description 00003 ------------------- 00004 begin : Wed May 22 2002 00005 copyright : (C) 2002 by Rüdiger Koch 00006 email : rkoch@rkoch.org 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 using namespace std; 00019 #include <string> 00020 00026 namespace Utilities { 00027 00029 float RandPercent(); 00030 float GaussRand(float mean, float sigma); 00032 string itostr(int val); 00034 string ftostr(float val); 00035 00042 string MkTempDir(); 00043 }