|
||||
File indexing completed on 2024-04-06 12:01:17
0001 #ifndef Parser_ExpressionStack_h 0002 #define Parser_ExpressionStack_h 0003 /* \class reco::parser::ExpressionStack 0004 * 0005 * Stack of parsed expressions 0006 * 0007 * \author original version: Chris Jones, Cornell, 0008 * adapted by Luca Lista, INFN 0009 * 0010 * \version $Revision: 1.2 $ 0011 * 0012 */ 0013 0014 #include <vector> 0015 #include <memory> 0016 0017 namespace reco { 0018 namespace parser { 0019 struct ExpressionBase; 0020 0021 typedef std::vector<std::shared_ptr<ExpressionBase> > ExpressionStack; 0022 } // namespace parser 0023 } // namespace reco 0024 0025 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |