All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GaudiAlg.cpp
Go to the documentation of this file.
1 // $Id: GaudiAlg.cpp,v 1.4 2005/11/18 17:28:32 mato Exp $
2 // ============================================================================
3 // Include files
4 // ============================================================================
5 // STD & STL
6 // ============================================================================
7 #include <string>
8 // ============================================================================
9 // GaudiAlg
10 // ============================================================================
11 #include "GaudiAlg/GaudiAlg.h"
12 // ============================================================================
13 // Boots
14 // ============================================================================
15 #ifdef __ICC
16 // disable icc remark #2259: non-pointer conversion from "X" to "Y" may lose significant bits
17 // coming from boost/lexical_cast.hpp
18 #pragma warning(disable:2259)
19 #endif
20 #include "boost/lexical_cast.hpp"
21 // ============================================================================
22 
29 // ============================================================================
36 // ============================================================================
37 std::string fileLine( const int number )
38 { return boost::lexical_cast<std::string>( number ) ; }
39 // ============================================================================
std::string fileLine(const int number)
convers number into the string (remove the actual code duplication from namespaces GaudiAlgLocal and ...
Definition: GaudiAlg.cpp:37