|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
00001 // $Id: ParseVectorsReal.cpp,v 1.2 2007/05/24 14:39:11 hmd Exp $ 00002 // ============================================================================ 00003 // CVS tag $Name: $, version $Revision: 1.2 $ 00004 // ============================================================================ 00005 // Include files 00006 // ============================================================================ 00007 // Local 00008 // ============================================================================ 00009 #ifdef WIN32 00010 // Disable warning 00011 // C4244: '=' : conversion from 'int' to 'float', possible loss of data 00012 // Coming from the parsers(?). 00013 #pragma warning(disable:4244) 00014 #endif 00015 #include "GaudiKernel/Parsers.icpp" 00016 // ============================================================================ 00017 // ============================================================================ 00034 // ============================================================================ 00035 namespace Gaudi 00036 { 00037 namespace Parsers 00038 { 00039 // ======================================================================== 00040 StatusCode parse ( vector<float>& result , 00041 const string& input ) 00042 { return parse_real_vector ( result , input ) ; } 00043 // ======================================================================== 00044 StatusCode parse ( vector<double>& result , 00045 const string& input ) 00046 { return parse_real_vector ( result , input ) ; } 00047 // ======================================================================== 00048 StatusCode parse ( vector<long double>& result , 00049 const string& input ) 00050 { return parse_real_vector ( result , input ) ; } 00051 // ======================================================================== 00052 00053 } // end of namespace Parsers 00054 } // end of namespace Gaudi 00055 00056 // ============================================================================ 00057 // The END 00058 // ============================================================================ 00059 00060