CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ExpressionStack.h
Go to the documentation of this file.
1 #ifndef Parser_ExpressionStack_h
2 #define Parser_ExpressionStack_h
3 /* \class reco::parser::ExpressionStack
4  *
5  * Stack of parsed expressions
6  *
7  * \author original version: Chris Jones, Cornell,
8  * adapted to Reflex by Luca Lista, INFN
9  *
10  * \version $Revision: 1.1 $
11  *
12  */
13 #include <boost/shared_ptr.hpp>
14 #include <vector>
15 
16 namespace reco {
17  namespace parser {
19 
20  typedef std::vector<boost::shared_ptr<ExpressionBase> > ExpressionStack;
21  }
22 }
23 
24 #endif
std::vector< boost::shared_ptr< ExpressionBase > > ExpressionStack