00001 // ================================================ 00002 // NumberTOString function class description 00003 // ================================================ 00004 // 00005 // THIS TEXT TO BE REPLACED BY ATLAS STANDARD FORMAT 00006 // 00007 // Namespace Atlfast:: 00008 // 00009 // Function: numberToString 00010 // 00011 // Authors: R.Steward, J.Cocuchman 00012 // 00013 // Description: 00014 // 00015 // Utility to convert numbers to std::strings 00016 // 00017 //.................................................. 00018 00019 00020 00021 #ifndef ATLFAST_NUMBERTOSTRING_H 00022 #define ATLFAST_NUMBERTOSTRING_H 00023 #include <string> 00024 00025 namespace Atlfast{ 00026 std::string numberToString(int); 00027 } 00028 #endif