![]() |
|
|
Generated: 8 Jan 2009 |
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 #include "Parsers.icpp" 00010 // ============================================================================ 00011 00012 // ============================================================================ 00029 // ============================================================================ 00030 namespace Gaudi 00031 { 00032 namespace Parsers 00033 { 00034 // ======================================================================== 00035 StatusCode parse ( vector<float>& result , 00036 const string& input ) 00037 { return parse_real_vector ( result , input ) ; } 00038 // ======================================================================== 00039 StatusCode parse ( vector<double>& result , 00040 const string& input ) 00041 { return parse_real_vector ( result , input ) ; } 00042 // ======================================================================== 00043 StatusCode parse ( vector<long double>& result , 00044 const string& input ) 00045 { return parse_real_vector ( result , input ) ; } 00046 // ======================================================================== 00047 00048 } // end of namespace Parsers 00049 } // end of namespace Gaudi 00050 00051 // ============================================================================ 00052 // The END 00053 // ============================================================================ 00054 00055