![]() |
|
|
Generated: 18 Jul 2008 |
00001 // $Id: ParseVectorsBool.cpp,v 1.2 2007/05/24 14:39:11 hmd Exp $ 00002 // ============================================================================ 00003 // CVS tag $Name: v25r2 $, 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<bool>& result , 00036 const string& input ) 00037 { 00038 return parse( 00039 createIterator(input), 00040 IteratorT(), 00041 VectorGrammar<BoolGrammar>()[var(result)=arg1], 00042 SkipperGrammar()).full; 00043 } 00044 // ======================================================================== 00045 00046 } // end of namespace Parsers 00047 } // end of namespace Gaudi 00048 00049 // ============================================================================ 00050 // The END 00051 // ============================================================================ 00052 00053